]> git.karo-electronics.de Git - linux-beck.git/commitdiff
arm: omap: irq: get rid of ifdef hack
authorFelipe Balbi <balbi@ti.com>
Tue, 9 Sep 2014 00:54:57 +0000 (17:54 -0700)
committerTony Lindgren <tony@atomide.com>
Thu, 11 Sep 2014 20:05:49 +0000 (13:05 -0700)
we don't need the ifdef if we have omap_nr_pending
telling us how many pending registers we have
on current platform. This solves a possible
problem where we could try to handle bogus
interrupts on OMAP2 and OMAP3 if using single
zImage kernel, because we would end up reading
the following pending FIQ register.

Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/irq.c

index 583a1c7de8553a5c577e5d80086bb088ec5a256c..43785ee278409b149fe19373d11856e219f1860c 100644 (file)
@@ -234,24 +234,16 @@ static void __init omap_init_irq(u32 base, struct device_node *node)
 static asmlinkage void __exception_irq_entry
 omap_intc_handle_irq(struct pt_regs *regs)
 {
-       u32 irqnr;
+       u32 irqnr = 0;
        int handled_irq = 0;
+       int i;
 
        do {
-               irqnr = intc_readl(INTC_PENDING_IRQ0);
-               if (irqnr)
-                       goto out;
-
-               irqnr = intc_readl(INTC_PENDING_IRQ1);
-               if (irqnr)
-                       goto out;
-
-               irqnr = intc_readl(INTC_PENDING_IRQ2);
-#if IS_ENABLED(CONFIG_SOC_TI81XX) || IS_ENABLED(CONFIG_SOC_AM33XX)
-               if (irqnr)
-                       goto out;
-               irqnr = intc_readl(INTC_PENDING_IRQ3);
-#endif
+               for (i = 0; i < omap_nr_pending; i++) {
+                       irqnr = intc_readl(INTC_PENDING_IRQ0 + (0x20 * i));
+                       if (irqnr)
+                               goto out;
+               }
 
 out:
                if (!irqnr)