|
@@ -33,7 +33,7 @@
|
|
|
|
|
|
#define ZOOM3_EHCI_RESET_GPIO 64
|
|
|
|
|
|
-static void __init omap_zoom_init_irq(void)
|
|
|
+static void __init omap_zoom_init_early(void)
|
|
|
{
|
|
|
omap2_init_common_infrastructure();
|
|
|
if (machine_is_omap_zoom2())
|
|
@@ -42,8 +42,6 @@ static void __init omap_zoom_init_irq(void)
|
|
|
else if (machine_is_omap_zoom3())
|
|
|
omap2_init_common_devices(h8mbx00u0mer0em_sdrc_params,
|
|
|
h8mbx00u0mer0em_sdrc_params);
|
|
|
-
|
|
|
- omap_init_irq();
|
|
|
}
|
|
|
|
|
|
#ifdef CONFIG_OMAP_MUX
|
|
@@ -135,18 +133,20 @@ static void __init omap_zoom_init(void)
|
|
|
|
|
|
MACHINE_START(OMAP_ZOOM2, "OMAP Zoom2 board")
|
|
|
.boot_params = 0x80000100,
|
|
|
- .map_io = omap3_map_io,
|
|
|
.reserve = omap_reserve,
|
|
|
- .init_irq = omap_zoom_init_irq,
|
|
|
+ .map_io = omap3_map_io,
|
|
|
+ .init_early = omap_zoom_init_early,
|
|
|
+ .init_irq = omap_init_irq,
|
|
|
.init_machine = omap_zoom_init,
|
|
|
.timer = &omap_timer,
|
|
|
MACHINE_END
|
|
|
|
|
|
MACHINE_START(OMAP_ZOOM3, "OMAP Zoom3 board")
|
|
|
.boot_params = 0x80000100,
|
|
|
- .map_io = omap3_map_io,
|
|
|
.reserve = omap_reserve,
|
|
|
- .init_irq = omap_zoom_init_irq,
|
|
|
+ .map_io = omap3_map_io,
|
|
|
+ .init_early = omap_zoom_init_early,
|
|
|
+ .init_irq = omap_init_irq,
|
|
|
.init_machine = omap_zoom_init,
|
|
|
.timer = &omap_timer,
|
|
|
MACHINE_END
|