diff options
author | Tony Lindgren <tony@atomide.com> | 2011-09-26 18:25:22 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-09-26 20:50:37 -0400 |
commit | be73246058737beec52ae232bcab7776332a9e06 (patch) | |
tree | df661c19c1e3d781b67ee28bd5c7d96f248c0681 /arch/arm/mach-omap2/board-devkit8000.c | |
parent | e990a4060fcb78a1576d36e7327db11c0d278a6b (diff) |
ARM: OMAP2+: Remove custom init_irq for remaining boards
With SoC specific timers, board specific init_irq is
no longer needed. Earlier this was still needed to
initialize the gptimer12 on Beagle based boards.
Also convert board-h4.c to use omap2_init_irq accidentally
did not get converted earlier.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-devkit8000.c')
-rw-r--r-- | arch/arm/mach-omap2/board-devkit8000.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/arm/mach-omap2/board-devkit8000.c b/arch/arm/mach-omap2/board-devkit8000.c index 4b1f6c68c358..059b74dd9289 100644 --- a/arch/arm/mach-omap2/board-devkit8000.c +++ b/arch/arm/mach-omap2/board-devkit8000.c | |||
@@ -397,11 +397,6 @@ static struct platform_device keys_gpio = { | |||
397 | }, | 397 | }, |
398 | }; | 398 | }; |
399 | 399 | ||
400 | static void __init devkit8000_init_irq(void) | ||
401 | { | ||
402 | omap3_init_irq(); | ||
403 | } | ||
404 | |||
405 | #define OMAP_DM9000_BASE 0x2c000000 | 400 | #define OMAP_DM9000_BASE 0x2c000000 |
406 | 401 | ||
407 | static struct resource omap_dm9000_resources[] = { | 402 | static struct resource omap_dm9000_resources[] = { |
@@ -665,7 +660,7 @@ MACHINE_START(DEVKIT8000, "OMAP3 Devkit8000") | |||
665 | .reserve = omap_reserve, | 660 | .reserve = omap_reserve, |
666 | .map_io = omap3_map_io, | 661 | .map_io = omap3_map_io, |
667 | .init_early = omap35xx_init_early, | 662 | .init_early = omap35xx_init_early, |
668 | .init_irq = devkit8000_init_irq, | 663 | .init_irq = omap3_init_irq, |
669 | .init_machine = devkit8000_init, | 664 | .init_machine = devkit8000_init, |
670 | .timer = &omap3_secure_timer, | 665 | .timer = &omap3_secure_timer, |
671 | MACHINE_END | 666 | MACHINE_END |