diff options
author | guoyin.chen <guoyin.chen@freescale.com> | 2014-07-01 16:21:33 +0800 |
---|---|---|
committer | guoyin.chen <guoyin.chen@freescale.com> | 2014-07-01 16:21:33 +0800 |
commit | 875410fa2ddc8f8d2317c597db167a6a9b1b8a1f (patch) | |
tree | da4d3c0dc2e6b87b389b7fbefbdb08fdbcb3e1a2 /board | |
parent | 7feb8533f52677f641e3ff88a996cd3f1f722708 (diff) | |
download | u-boot-imx-875410fa2ddc8f8d2317c597db167a6a9b1b8a1f.zip u-boot-imx-875410fa2ddc8f8d2317c597db167a6a9b1b8a1f.tar.gz u-boot-imx-875410fa2ddc8f8d2317c597db167a6a9b1b8a1f.tar.bz2 |
ENGR00320609 Use FUNC2 as Volume down key in bootloader recovery mode detection
Align the keymap with Android rootfs as:
FUNC1 -- > Volume +
FUNC2 -- > Volume -
Signed-off-by: guoyin.chen <guoyin.chen@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx6sxsabresd/mx6sxsabresd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/mx6sxsabresd/mx6sxsabresd.c b/board/freescale/mx6sxsabresd/mx6sxsabresd.c index aecc00b..8fa4329 100644 --- a/board/freescale/mx6sxsabresd/mx6sxsabresd.c +++ b/board/freescale/mx6sxsabresd/mx6sxsabresd.c @@ -963,9 +963,9 @@ void board_fastboot_setup(void) #ifdef CONFIG_ANDROID_RECOVERY -#define GPIO_VOL_DN_KEY IMX_GPIO_NR(1, 18) +#define GPIO_VOL_DN_KEY IMX_GPIO_NR(1, 19) iomux_v3_cfg_t const recovery_key_pads[] = { - (MX6SX_PAD_CSI_DATA04__GPIO1_IO_18 | MUX_PAD_CTRL(BUTTON_PAD_CTRL)), + (MX6SX_PAD_CSI_DATA05__GPIO1_IO_19 | MUX_PAD_CTRL(BUTTON_PAD_CTRL)), }; int check_recovery_cmd_file(void) |