diff options
author | Jamie Iles <jamie@jamieiles.com> | 2011-09-27 21:07:05 +0200 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2011-11-15 19:14:03 +0100 |
commit | 9a6879bd902e2ec605fff4d9fb3247b440a1f66a (patch) | |
tree | 93019057fa27c1a803ee1e08a07154b866171810 /arch/arm/mach-ep93xx/ts72xx.c | |
parent | ARM: vic: MULTI_IRQ_HANDLER handler (diff) | |
download | linux-9a6879bd902e2ec605fff4d9fb3247b440a1f66a.tar.xz linux-9a6879bd902e2ec605fff4d9fb3247b440a1f66a.zip |
ARM: ep93xx: convert to MULTI_IRQ_HANDLER
Now that there is a generic IRQ handler for multiple VIC devices use it
for ep93xx to help building multi platform kernels.
Cc: Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ryan Mallon <rmallon@gmail.com>
Signed-off-by: Jamie Iles <jamie@jamieiles.com>
Diffstat (limited to 'arch/arm/mach-ep93xx/ts72xx.c')
-rw-r--r-- | arch/arm/mach-ep93xx/ts72xx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-ep93xx/ts72xx.c b/arch/arm/mach-ep93xx/ts72xx.c index 8b2f1435bcac..760384e6407d 100644 --- a/arch/arm/mach-ep93xx/ts72xx.c +++ b/arch/arm/mach-ep93xx/ts72xx.c @@ -23,6 +23,7 @@ #include <mach/hardware.h> #include <mach/ts72xx.h> +#include <asm/hardware/vic.h> #include <asm/mach-types.h> #include <asm/mach/map.h> #include <asm/mach/arch.h> @@ -247,6 +248,7 @@ MACHINE_START(TS72XX, "Technologic Systems TS-72xx SBC") .atag_offset = 0x100, .map_io = ts72xx_map_io, .init_irq = ep93xx_init_irq, + .handle_irq = vic_handle_irq, .timer = &ep93xx_timer, .init_machine = ts72xx_init_machine, MACHINE_END |