diff options
author | Arnaud Patard (Rtp) <arnaud.patard@rtp-net.org> | 2010-11-26 09:27:53 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2010-12-03 05:05:11 -0500 |
commit | 0ef51953be84cf910cdf5d9a6b8ccb75fd3dd10c (patch) | |
tree | 385c7afd0ef6476891bb2c8ba77f15d2b917db0e /arch/arm/mach-mx5/board-mx51_efikamx.c | |
parent | 4c6c32b3f856346158161a8c9824b4dd2bff0893 (diff) |
mx5: Fix efikamx build
Commit 124bf94a "ARM: imx: fix name for functions adding sdhci-esdhc-imx devices"
changed some devices and Kconfig entry and didn't change every places
it should have. It's breaking efikamx build. I've fixed 3ds Kconfig
entry as I believe it's broken there too.
Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx5/board-mx51_efikamx.c')
-rw-r--r-- | arch/arm/mach-mx5/board-mx51_efikamx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mx5/board-mx51_efikamx.c b/arch/arm/mach-mx5/board-mx51_efikamx.c index 4b2718b3e517..3a4607bb79b5 100644 --- a/arch/arm/mach-mx5/board-mx51_efikamx.c +++ b/arch/arm/mach-mx5/board-mx51_efikamx.c | |||
@@ -319,11 +319,11 @@ static void __init mxc_board_init(void) | |||
319 | mx51_efikamx_board_id(); | 319 | mx51_efikamx_board_id(); |
320 | mxc_register_device(&mxc_usbdr_host_device, &dr_utmi_config); | 320 | mxc_register_device(&mxc_usbdr_host_device, &dr_utmi_config); |
321 | mxc_init_imx_uart(); | 321 | mxc_init_imx_uart(); |
322 | imx51_add_esdhc(0, NULL); | 322 | imx51_add_sdhci_esdhc_imx(0, NULL); |
323 | 323 | ||
324 | /* on < 1.2 boards both SD controllers are used */ | 324 | /* on < 1.2 boards both SD controllers are used */ |
325 | if (system_rev < 0x12) { | 325 | if (system_rev < 0x12) { |
326 | imx51_add_esdhc(1, NULL); | 326 | imx51_add_sdhci_esdhc_imx(1, NULL); |
327 | mx51_efikamx_leds[2].default_trigger = "mmc1"; | 327 | mx51_efikamx_leds[2].default_trigger = "mmc1"; |
328 | } | 328 | } |
329 | 329 | ||