diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-4430sdp.c')
-rw-r--r-- | arch/arm/mach-omap2/board-4430sdp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c index 07d1b20b1148..12d99e582cd6 100644 --- a/arch/arm/mach-omap2/board-4430sdp.c +++ b/arch/arm/mach-omap2/board-4430sdp.c | |||
@@ -239,7 +239,7 @@ static struct omap_board_config_kernel sdp4430_config[] __initdata = { | |||
239 | { OMAP_TAG_LCD, &sdp4430_lcd_config }, | 239 | { OMAP_TAG_LCD, &sdp4430_lcd_config }, |
240 | }; | 240 | }; |
241 | 241 | ||
242 | static void __init omap_4430sdp_init_irq(void) | 242 | static void __init omap_4430sdp_init_early(void) |
243 | { | 243 | { |
244 | omap_board_config = sdp4430_config; | 244 | omap_board_config = sdp4430_config; |
245 | omap_board_config_size = ARRAY_SIZE(sdp4430_config); | 245 | omap_board_config_size = ARRAY_SIZE(sdp4430_config); |
@@ -248,7 +248,6 @@ static void __init omap_4430sdp_init_irq(void) | |||
248 | #ifdef CONFIG_OMAP_32K_TIMER | 248 | #ifdef CONFIG_OMAP_32K_TIMER |
249 | omap2_gp_clockevent_set_gptimer(1); | 249 | omap2_gp_clockevent_set_gptimer(1); |
250 | #endif | 250 | #endif |
251 | gic_init_irq(); | ||
252 | } | 251 | } |
253 | 252 | ||
254 | static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { | 253 | static const struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { |
@@ -605,9 +604,10 @@ static void __init omap_4430sdp_map_io(void) | |||
605 | MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board") | 604 | MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board") |
606 | /* Maintainer: Santosh Shilimkar - Texas Instruments Inc */ | 605 | /* Maintainer: Santosh Shilimkar - Texas Instruments Inc */ |
607 | .boot_params = 0x80000100, | 606 | .boot_params = 0x80000100, |
608 | .map_io = omap_4430sdp_map_io, | ||
609 | .reserve = omap_reserve, | 607 | .reserve = omap_reserve, |
610 | .init_irq = omap_4430sdp_init_irq, | 608 | .map_io = omap_4430sdp_map_io, |
609 | .init_early = omap_4430sdp_init_early, | ||
610 | .init_irq = gic_init_irq, | ||
611 | .init_machine = omap_4430sdp_init, | 611 | .init_machine = omap_4430sdp_init, |
612 | .timer = &omap_timer, | 612 | .timer = &omap_timer, |
613 | MACHINE_END | 613 | MACHINE_END |