On Tue, 26 Aug 2014 11:03:35 +0100
Marc Zyngier <[email protected]> wrote:

> Use the new handle_domain_irq method to handle interrupts.
> 
> Signed-off-by: Marc Zyngier <[email protected]>

Acked-by: Boris Brezillon <[email protected]>

> ---
>  drivers/irqchip/irq-atmel-aic5.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/drivers/irqchip/irq-atmel-aic5.c 
> b/drivers/irqchip/irq-atmel-aic5.c
> index edb2270..04fe2c1 100644
> --- a/drivers/irqchip/irq-atmel-aic5.c
> +++ b/drivers/irqchip/irq-atmel-aic5.c
> @@ -78,12 +78,10 @@ aic5_handle(struct pt_regs *regs)
>       irqnr = irq_reg_readl(gc->reg_base + AT91_AIC5_IVR);
>       irqstat = irq_reg_readl(gc->reg_base + AT91_AIC5_ISR);
>  
> -     irqnr = irq_find_mapping(aic5_domain, irqnr);
> -
>       if (!irqstat)
>               irq_reg_writel(0, gc->reg_base + AT91_AIC5_EOICR);
>       else
> -             handle_IRQ(irqnr, regs);
> +             handle_domain_irq(aic5_domain, irqnr, regs);
>  }
>  
>  static void aic5_mask(struct irq_data *d)



-- 
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to