diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2011-09-06 05:23:45 -0400 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2011-11-15 13:14:02 -0500 |
commit | 6b2f55d7851aa358d3a99cff344c560c4967f042 (patch) | |
tree | bc7bcbc262882d091251294da1740e11f8b59968 /arch/arm/mach-omap2/board-omap4panda.c | |
parent | 2db1499784da653f7e257d98fefdebc65fde7c40 (diff) |
ARM: omap2plus: convert to CONFIG_MULTI_IRQ_HANDLER
Convert the omap2plus platforms to be using CONFIG_MULTI_IRQ_HANDLER.
Each machine is modified to provide either omap2_intc_handle_irq(),
omap3_intc_handle_irq() or gic_handle_irq().
This allows for a major cleanup, removing the MULTI_OMAP setup
from the interrupt path.
Tested on both Panda and IGEPv2 (single kernel image)
Tested-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-omap4panda.c')
-rw-r--r-- | arch/arm/mach-omap2/board-omap4panda.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c index a8c2c4263e38..aa9465e79bfc 100644 --- a/arch/arm/mach-omap2/board-omap4panda.c +++ b/arch/arm/mach-omap2/board-omap4panda.c | |||
@@ -31,6 +31,7 @@ | |||
31 | 31 | ||
32 | #include <mach/hardware.h> | 32 | #include <mach/hardware.h> |
33 | #include <mach/omap4-common.h> | 33 | #include <mach/omap4-common.h> |
34 | #include <asm/hardware/gic.h> | ||
34 | #include <asm/mach-types.h> | 35 | #include <asm/mach-types.h> |
35 | #include <asm/mach/arch.h> | 36 | #include <asm/mach/arch.h> |
36 | #include <asm/mach/map.h> | 37 | #include <asm/mach/map.h> |
@@ -577,6 +578,7 @@ MACHINE_START(OMAP4_PANDA, "OMAP4 Panda board") | |||
577 | .map_io = omap4_map_io, | 578 | .map_io = omap4_map_io, |
578 | .init_early = omap4430_init_early, | 579 | .init_early = omap4430_init_early, |
579 | .init_irq = gic_init_irq, | 580 | .init_irq = gic_init_irq, |
581 | .handle_irq = gic_handle_irq, | ||
580 | .init_machine = omap4_panda_init, | 582 | .init_machine = omap4_panda_init, |
581 | .timer = &omap4_timer, | 583 | .timer = &omap4_timer, |
582 | MACHINE_END | 584 | MACHINE_END |