aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/board-omap3touchbook.c
diff options
context:
space:
mode:
authorTony Lindgren <tony@atomide.com>2011-09-26 18:25:22 -0400
committerTony Lindgren <tony@atomide.com>2011-09-26 20:50:37 -0400
commitbe73246058737beec52ae232bcab7776332a9e06 (patch)
treedf661c19c1e3d781b67ee28bd5c7d96f248c0681 /arch/arm/mach-omap2/board-omap3touchbook.c
parente990a4060fcb78a1576d36e7327db11c0d278a6b (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-omap3touchbook.c')
-rw-r--r--arch/arm/mach-omap2/board-omap3touchbook.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/arm/mach-omap2/board-omap3touchbook.c b/arch/arm/mach-omap2/board-omap3touchbook.c
index f7f18092f36..05488fbc20d 100644
--- a/arch/arm/mach-omap2/board-omap3touchbook.c
+++ b/arch/arm/mach-omap2/board-omap3touchbook.c
@@ -326,11 +326,6 @@ static struct omap_board_mux board_mux[] __initdata = {
326}; 326};
327#endif 327#endif
328 328
329static void __init omap3_touchbook_init_irq(void)
330{
331 omap3_init_irq();
332}
333
334static struct platform_device *omap3_touchbook_devices[] __initdata = { 329static struct platform_device *omap3_touchbook_devices[] __initdata = {
335 &omap3_touchbook_lcd_device, 330 &omap3_touchbook_lcd_device,
336 &leds_gpio, 331 &leds_gpio,
@@ -403,7 +398,7 @@ MACHINE_START(TOUCHBOOK, "OMAP3 touchbook Board")
403 .reserve = omap_reserve, 398 .reserve = omap_reserve,
404 .map_io = omap3_map_io, 399 .map_io = omap3_map_io,
405 .init_early = omap3430_init_early, 400 .init_early = omap3430_init_early,
406 .init_irq = omap3_touchbook_init_irq, 401 .init_irq = omap3_init_irq,
407 .init_machine = omap3_touchbook_init, 402 .init_machine = omap3_touchbook_init,
408 .timer = &omap3_secure_timer, 403 .timer = &omap3_secure_timer,
409MACHINE_END 404MACHINE_END