Commit 0af83b3b00cc302388beea8b6bd48c5fcbc715a8

Authored by Marc Zyngier
Committed by Jason Cooper
1 parent 84bc739909

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/irqchip/irq-vic.c
... ... @@ -219,7 +219,7 @@
219 219  
220 220 while ((stat = readl_relaxed(vic->base + VIC_IRQ_STATUS))) {
221 221 irq = ffs(stat) - 1;
222   - handle_IRQ(irq_find_mapping(vic->domain, irq), regs);
  222 + handle_domain_irq(vic->domain, irq, regs);
223 223 handled = 1;
224 224 }
225 225