aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Zyngier <marc.zyngier@arm.com>2014-08-26 06:03:39 -0400
committerJason Cooper <jason@lakedaemon.net>2014-09-03 09:10:59 -0400
commitf978999f60966076f3f43ed1894b54507c8ddfc9 (patch)
tree99499f4d389e0354293a612d06aa4c9f768002ad
parentcb221761001dc6c3eaf8b1edda0901b8c5c801bd (diff)
ARM: omap2: irq: Convert to handle_domain_irq
Use the new handle_domain_irq method to handle interrupts. Signed-off-by: Marc Zyngier <marc.zyngier@arm.com> Acked-by: Tony Lindgren <tony@atomide.com> Link: https://lkml.kernel.org/r/1409047421-27649-25-git-send-email-marc.zyngier@arm.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r--arch/arm/mach-omap2/irq.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c
index 35b8590c322e..a62ba5aebe63 100644
--- a/arch/arm/mach-omap2/irq.c
+++ b/arch/arm/mach-omap2/irq.c
@@ -248,8 +248,7 @@ out:
248 irqnr &= ACTIVEIRQ_MASK; 248 irqnr &= ACTIVEIRQ_MASK;
249 249
250 if (irqnr) { 250 if (irqnr) {
251 irqnr = irq_find_mapping(domain, irqnr); 251 handle_domain_irq(domain, irqnr, regs);
252 handle_IRQ(irqnr, regs);
253 handled_irq = 1; 252 handled_irq = 1;
254 } 253 }
255 } while (irqnr); 254 } while (irqnr);