Message ID | 1409047421-27649-25-git-send-email-marc.zyngier@arm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
* Marc Zyngier <marc.zyngier@arm.com> [140826 03:05]: > Use the new handle_domain_irq method to handle interrupts. > > Signed-off-by: Marc Zyngier <marc.zyngier@arm.com> Seems to boot: Acked-by: Tony Lindgren <tony@atomide.com> > --- > arch/arm/mach-omap2/irq.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c > index 35b8590..a62ba5a 100644 > --- a/arch/arm/mach-omap2/irq.c > +++ b/arch/arm/mach-omap2/irq.c > @@ -248,8 +248,7 @@ out: > irqnr &= ACTIVEIRQ_MASK; > > if (irqnr) { > - irqnr = irq_find_mapping(domain, irqnr); > - handle_IRQ(irqnr, regs); > + handle_domain_irq(domain, irqnr, regs); > handled_irq = 1; > } > } while (irqnr); > -- > 2.0.4 > -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c index 35b8590..a62ba5a 100644 --- a/arch/arm/mach-omap2/irq.c +++ b/arch/arm/mach-omap2/irq.c @@ -248,8 +248,7 @@ out: irqnr &= ACTIVEIRQ_MASK; if (irqnr) { - irqnr = irq_find_mapping(domain, irqnr); - handle_IRQ(irqnr, regs); + handle_domain_irq(domain, irqnr, regs); handled_irq = 1; } } while (irqnr);
Use the new handle_domain_irq method to handle interrupts. Signed-off-by: Marc Zyngier <marc.zyngier@arm.com> --- arch/arm/mach-omap2/irq.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)