diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2011-02-07 10:35:19 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-02-10 08:23:48 -0500 |
commit | 3dac219615b88010601ee52e7b5fd1c32ef789ea (patch) | |
tree | e2be4a211f7fe7df748e90a30d84b432895fc4c7 /arch/arm/mach-imx/mach-mx25_3ds.c | |
parent | 5836372e8a0ba5cc633f61bc0484ee20c86f4b36 (diff) |
ARM: imx: use .init_early to initialize cpu type and reset address
This used to be done in .map_io which is supposed to only setup the
memory mapping.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx/mach-mx25_3ds.c')
-rw-r--r-- | arch/arm/mach-imx/mach-mx25_3ds.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-imx/mach-mx25_3ds.c b/arch/arm/mach-imx/mach-mx25_3ds.c index aa76cfd9f348..0c92a80eac46 100644 --- a/arch/arm/mach-imx/mach-mx25_3ds.c +++ b/arch/arm/mach-imx/mach-mx25_3ds.c | |||
@@ -226,10 +226,10 @@ static struct sys_timer mx25pdk_timer = { | |||
226 | 226 | ||
227 | MACHINE_START(MX25_3DS, "Freescale MX25PDK (3DS)") | 227 | MACHINE_START(MX25_3DS, "Freescale MX25PDK (3DS)") |
228 | /* Maintainer: Freescale Semiconductor, Inc. */ | 228 | /* Maintainer: Freescale Semiconductor, Inc. */ |
229 | .boot_params = MX25_PHYS_OFFSET + 0x100, | 229 | .boot_params = MX25_PHYS_OFFSET + 0x100, |
230 | .map_io = mx25_map_io, | 230 | .map_io = mx25_map_io, |
231 | .init_irq = mx25_init_irq, | 231 | .init_early = imx25_init_early, |
232 | .init_machine = mx25pdk_init, | 232 | .init_irq = mx25_init_irq, |
233 | .timer = &mx25pdk_timer, | 233 | .timer = &mx25pdk_timer, |
234 | .init_machine = mx25pdk_init, | ||
234 | MACHINE_END | 235 | MACHINE_END |
235 | |||