aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/irqchip
diff options
context:
space:
mode:
authorMarc Zyngier <marc.zyngier@arm.com>2014-08-26 06:03:31 -0400
committerJason Cooper <jason@lakedaemon.net>2014-09-03 09:10:46 -0400
commit0beb65041e86ea313eaceaa6a04c87f9cc01f6b1 (patch)
tree63b9511f0b3476c7ac69fb5479f5fa24e7ea3f31 /drivers/irqchip
parent0af83b3b00cc302388beea8b6bd48c5fcbc715a8 (diff)
irqchip: vt8500: Convert to handle_domain_irq
Use the new handle_domain_irq method to handle interrupts. Signed-off-by: Marc Zyngier <marc.zyngier@arm.com> Link: https://lkml.kernel.org/r/1409047421-27649-17-git-send-email-marc.zyngier@arm.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'drivers/irqchip')
-rw-r--r--drivers/irqchip/irq-vt8500.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/irqchip/irq-vt8500.c b/drivers/irqchip/irq-vt8500.c
index eb6e91efdec8..b7af816f2769 100644
--- a/drivers/irqchip/irq-vt8500.c
+++ b/drivers/irqchip/irq-vt8500.c
@@ -181,7 +181,7 @@ static struct irq_domain_ops vt8500_irq_domain_ops = {
181static void __exception_irq_entry vt8500_handle_irq(struct pt_regs *regs) 181static void __exception_irq_entry vt8500_handle_irq(struct pt_regs *regs)
182{ 182{
183 u32 stat, i; 183 u32 stat, i;
184 int irqnr, virq; 184 int irqnr;
185 void __iomem *base; 185 void __iomem *base;
186 186
187 /* Loop through each active controller */ 187 /* Loop through each active controller */
@@ -198,8 +198,7 @@ static void __exception_irq_entry vt8500_handle_irq(struct pt_regs *regs)
198 continue; 198 continue;
199 } 199 }
200 200
201 virq = irq_find_mapping(intc[i].domain, irqnr); 201 handle_domain_irq(intc[i].domain, irqnr, regs);
202 handle_IRQ(virq, regs);
203 } 202 }
204} 203}
205 204