mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 22:21:42 +00:00
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>
This commit is contained in:
parent
84bc739909
commit
0af83b3b00
@ -219,7 +219,7 @@ static int handle_one_vic(struct vic_device *vic, struct pt_regs *regs)
|
||||
|
||||
while ((stat = readl_relaxed(vic->base + VIC_IRQ_STATUS))) {
|
||||
irq = ffs(stat) - 1;
|
||||
handle_IRQ(irq_find_mapping(vic->domain, irq), regs);
|
||||
handle_domain_irq(vic->domain, irq, regs);
|
||||
handled = 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user