aboutsummaryrefslogtreecommitdiff
path: root/board/freescale/mx53evk
diff options
context:
space:
mode:
authorAshok Kumar Reddy <ashokkourla2000@gmail.com>2012-08-28 07:39:38 +0530
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2012-09-01 14:58:30 +0200
commit925507088b756e1a1edf629946627ad7d3412315 (patch)
tree58c61efbbc1bfcd15d0dbbb586931a84f2cfbaa5 /board/freescale/mx53evk
parent10e2178b43455d8573b95494a957fe87878bebfc (diff)
mx5:Use IMX_GPIO_NR macro
Signed-off-by: Ashok Kumar Reddy <ashokkourla2000@gmail.com>
Diffstat (limited to 'board/freescale/mx53evk')
-rw-r--r--board/freescale/mx53evk/mx53evk.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/freescale/mx53evk/mx53evk.c b/board/freescale/mx53evk/mx53evk.c
index 7f5093830..c482a8d4c 100644
--- a/board/freescale/mx53evk/mx53evk.c
+++ b/board/freescale/mx53evk/mx53evk.c
@@ -215,14 +215,14 @@ int board_mmc_getcd(struct mmc *mmc)
int ret;
mxc_request_iomux(MX53_PIN_EIM_DA11, IOMUX_CONFIG_ALT1);
- gpio_direction_input(75);
+ gpio_direction_input(IMX_GPIO_NR(3, 11));
mxc_request_iomux(MX53_PIN_EIM_DA13, IOMUX_CONFIG_ALT1);
- gpio_direction_input(77);
+ gpio_direction_input(IMX_GPIO_NR(3, 13));
if (cfg->esdhc_base == MMC_SDHC1_BASE_ADDR)
- ret = !gpio_get_value(77); /* GPIO3_13 */
+ ret = !gpio_get_value(IMX_GPIO_NR(3, 13));
else
- ret = !gpio_get_value(75); /* GPIO3_11 */
+ ret = !gpio_get_value(IMX_GPIO_NR(3, 11));
return ret;
}