diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2011-02-07 10:35:20 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-02-10 08:23:49 -0500 |
commit | 97976e223be3091a91da103358c3c6cffff7db81 (patch) | |
tree | 3f658a7775f0049a3365d8d1c94fed0b6fedc903 /arch/arm/mach-mx3/mach-vpr200.c | |
parent | 3dac219615b88010601ee52e7b5fd1c32ef789ea (diff) |
ARM: mx3: use .init_early to initialize cpu type, reset address and iomuxer
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-mx3/mach-vpr200.c')
-rw-r--r-- | arch/arm/mach-mx3/mach-vpr200.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/arm/mach-mx3/mach-vpr200.c b/arch/arm/mach-mx3/mach-vpr200.c index 22ec78a7991f..2cf390fbd980 100644 --- a/arch/arm/mach-mx3/mach-vpr200.c +++ b/arch/arm/mach-mx3/mach-vpr200.c | |||
@@ -320,8 +320,9 @@ struct sys_timer vpr200_timer = { | |||
320 | 320 | ||
321 | MACHINE_START(VPR200, "VPR200") | 321 | MACHINE_START(VPR200, "VPR200") |
322 | /* Maintainer: Creative Product Design */ | 322 | /* Maintainer: Creative Product Design */ |
323 | .map_io = mx35_map_io, | 323 | .map_io = mx35_map_io, |
324 | .init_irq = mx35_init_irq, | 324 | .init_early = imx35_init_early, |
325 | .init_machine = vpr200_board_init, | 325 | .init_irq = mx35_init_irq, |
326 | .timer = &vpr200_timer, | 326 | .timer = &vpr200_timer, |
327 | .init_machine = vpr200_board_init, | ||
327 | MACHINE_END | 328 | MACHINE_END |