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-imx27ipcam.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-imx27ipcam.c')
-rw-r--r-- | arch/arm/mach-imx/mach-imx27ipcam.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/arch/arm/mach-imx/mach-imx27ipcam.c b/arch/arm/mach-imx/mach-imx27ipcam.c index d099ea600891..9be6cd6fbf8c 100644 --- a/arch/arm/mach-imx/mach-imx27ipcam.c +++ b/arch/arm/mach-imx/mach-imx27ipcam.c | |||
@@ -69,9 +69,10 @@ static struct sys_timer mx27ipcam_timer = { | |||
69 | 69 | ||
70 | MACHINE_START(IMX27IPCAM, "Freescale IMX27IPCAM") | 70 | MACHINE_START(IMX27IPCAM, "Freescale IMX27IPCAM") |
71 | /* maintainer: Freescale Semiconductor, Inc. */ | 71 | /* maintainer: Freescale Semiconductor, Inc. */ |
72 | .boot_params = MX27_PHYS_OFFSET + 0x100, | 72 | .boot_params = MX27_PHYS_OFFSET + 0x100, |
73 | .map_io = mx27_map_io, | 73 | .map_io = mx27_map_io, |
74 | .init_irq = mx27_init_irq, | 74 | .init_early = imx27_init_early, |
75 | .init_machine = mx27ipcam_init, | 75 | .init_irq = mx27_init_irq, |
76 | .timer = &mx27ipcam_timer, | 76 | .timer = &mx27ipcam_timer, |
77 | .init_machine = mx27ipcam_init, | ||
77 | MACHINE_END | 78 | MACHINE_END |