irqchip: atmel-aic: Convert to handle_domain_irq
authorMarc Zyngier <marc.zyngier@arm.com>
Tue, 26 Aug 2014 10:03:34 +0000 (11:03 +0100)
committerJason Cooper <jason@lakedaemon.net>
Wed, 3 Sep 2014 13:10:51 +0000 (13:10 +0000)
Use the new handle_domain_irq method to handle interrupts.

Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Link: https://lkml.kernel.org/r/1409047421-27649-20-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
drivers/irqchip/irq-atmel-aic.c

index a82869e..9a2cf3c 100644 (file)
@@ -68,12 +68,10 @@ aic_handle(struct pt_regs *regs)
        irqnr = irq_reg_readl(gc->reg_base + AT91_AIC_IVR);
        irqstat = irq_reg_readl(gc->reg_base + AT91_AIC_ISR);
 
-       irqnr = irq_find_mapping(aic_domain, irqnr);
-
        if (!irqstat)
                irq_reg_writel(0, gc->reg_base + AT91_AIC_EOICR);
        else
-               handle_IRQ(irqnr, regs);
+               handle_domain_irq(aic_domain, irqnr, regs);
 }
 
 static int aic_retrigger(struct irq_data *d)