diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2014-08-26 06:03:30 -0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2014-09-03 09:10:45 -0400 |
commit | 0af83b3b00cc302388beea8b6bd48c5fcbc715a8 (patch) | |
tree | f5f48a6ee662643def321b8448c2be7e1f95ca76 | |
parent | 84bc7399099344e41672d72864e3c34297a877d2 (diff) |
irqchip: vic: 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-16-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r-- | drivers/irqchip/irq-vic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-vic.c b/drivers/irqchip/irq-vic.c index 7d35287f9e90..54089debf2dc 100644 --- a/drivers/irqchip/irq-vic.c +++ b/drivers/irqchip/irq-vic.c | |||
@@ -219,7 +219,7 @@ static int handle_one_vic(struct vic_device *vic, struct pt_regs *regs) | |||
219 | 219 | ||
220 | while ((stat = readl_relaxed(vic->base + VIC_IRQ_STATUS))) { | 220 | while ((stat = readl_relaxed(vic->base + VIC_IRQ_STATUS))) { |
221 | irq = ffs(stat) - 1; | 221 | irq = ffs(stat) - 1; |
222 | handle_IRQ(irq_find_mapping(vic->domain, irq), regs); | 222 | handle_domain_irq(vic->domain, irq, regs); |
223 | handled = 1; | 223 | handled = 1; |
224 | } | 224 | } |
225 | 225 | ||