aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx3/mach-pcm043.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2011-02-07 10:35:20 -0500
committerSascha Hauer <s.hauer@pengutronix.de>2011-02-10 08:23:49 -0500
commit97976e223be3091a91da103358c3c6cffff7db81 (patch)
tree3f658a7775f0049a3365d8d1c94fed0b6fedc903 /arch/arm/mach-mx3/mach-pcm043.c
parent3dac219615b88010601ee52e7b5fd1c32ef789ea (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-pcm043.c')
-rw-r--r--arch/arm/mach-mx3/mach-pcm043.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-mx3/mach-pcm043.c b/arch/arm/mach-mx3/mach-pcm043.c
index a515290f15f..b03e19d6548 100644
--- a/arch/arm/mach-mx3/mach-pcm043.c
+++ b/arch/arm/mach-mx3/mach-pcm043.c
@@ -403,10 +403,10 @@ struct sys_timer pcm043_timer = {
403 403
404MACHINE_START(PCM043, "Phytec Phycore pcm043") 404MACHINE_START(PCM043, "Phytec Phycore pcm043")
405 /* Maintainer: Pengutronix */ 405 /* Maintainer: Pengutronix */
406 .boot_params = MX3x_PHYS_OFFSET + 0x100, 406 .boot_params = MX3x_PHYS_OFFSET + 0x100,
407 .map_io = mx35_map_io, 407 .map_io = mx35_map_io,
408 .init_irq = mx35_init_irq, 408 .init_early = imx35_init_early,
409 .init_machine = mxc_board_init, 409 .init_irq = mx35_init_irq,
410 .timer = &pcm043_timer, 410 .timer = &pcm043_timer,
411 .init_machine = mxc_board_init,
411MACHINE_END 412MACHINE_END
412