diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-06-30 06:16:24 -0400 |
---|---|---|
committer | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-07-26 08:27:25 -0400 |
commit | 2dcf78c0eeae3bd07082821557014f25f02ca2e9 (patch) | |
tree | 8ca5c4c7f35c9a9ab07fcd9732124c905e609aa1 /arch/arm/mach-mx25/eukrea_mbimxsd-baseboard.c | |
parent | 6b6322676add0fa2713d0ec89a28390fd4d907f5 (diff) | |
parent | 5109a4597f7e758b8d20694392d0361a0b4c43b1 (diff) |
Merge branch 'imx/for-2.6.36' of git://git.pengutronix.de/git/ukl/linux-2.6 into HEAD
There are some more conflicts than detected by git, namely support for
the newly added cpuimx machines needed to be converted to dynamic device
registration.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Conflicts:
arch/arm/mach-imx/Makefile
arch/arm/mach-imx/devices.c
arch/arm/mach-imx/devices.h
arch/arm/mach-imx/eukrea_mbimx27-baseboard.c
arch/arm/mach-mx2/Kconfig
arch/arm/mach-mx25/Makefile
arch/arm/mach-mx25/devices.c
arch/arm/plat-mxc/include/mach/mx25.h
arch/arm/plat-mxc/include/mach/mxc_nand.h
Diffstat (limited to 'arch/arm/mach-mx25/eukrea_mbimxsd-baseboard.c')
-rw-r--r-- | arch/arm/mach-mx25/eukrea_mbimxsd-baseboard.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mach-mx25/eukrea_mbimxsd-baseboard.c b/arch/arm/mach-mx25/eukrea_mbimxsd-baseboard.c index e0f0dfda4d01..f07b1f95ac76 100644 --- a/arch/arm/mach-mx25/eukrea_mbimxsd-baseboard.c +++ b/arch/arm/mach-mx25/eukrea_mbimxsd-baseboard.c | |||
@@ -38,6 +38,7 @@ | |||
38 | #include <mach/ssi.h> | 38 | #include <mach/ssi.h> |
39 | #include <mach/audmux.h> | 39 | #include <mach/audmux.h> |
40 | 40 | ||
41 | #include "devices-imx25.h" | ||
41 | #include "devices.h" | 42 | #include "devices.h" |
42 | 43 | ||
43 | static struct pad_desc eukrea_mbimxsd_pads[] = { | 44 | static struct pad_desc eukrea_mbimxsd_pads[] = { |
@@ -195,7 +196,7 @@ static struct platform_device *platform_devices[] __initdata = { | |||
195 | &eukrea_mbimxsd_lcd_powerdev, | 196 | &eukrea_mbimxsd_lcd_powerdev, |
196 | }; | 197 | }; |
197 | 198 | ||
198 | static struct imxuart_platform_data uart_pdata = { | 199 | static const struct imxuart_platform_data uart_pdata __initconst = { |
199 | .flags = IMXUART_HAVE_RTSCTS, | 200 | .flags = IMXUART_HAVE_RTSCTS, |
200 | }; | 201 | }; |
201 | 202 | ||
@@ -237,7 +238,7 @@ void __init eukrea_mbimxsd_baseboard_init(void) | |||
237 | ); | 238 | ); |
238 | #endif | 239 | #endif |
239 | 240 | ||
240 | mxc_register_device(&mxc_uart_device1, &uart_pdata); | 241 | imx25_add_imx_uart1(&uart_pdata); |
241 | mxc_register_device(&mx25_fb_device, &eukrea_mximxsd_fb_pdata); | 242 | mxc_register_device(&mx25_fb_device, &eukrea_mximxsd_fb_pdata); |
242 | mxc_register_device(&imx_ssi_device0, &eukrea_mbimxsd_ssi_pdata); | 243 | mxc_register_device(&imx_ssi_device0, &eukrea_mbimxsd_ssi_pdata); |
243 | 244 | ||