arm: omap: irq: add a global omap_nr_irqs variable
authorFelipe Balbi <balbi@ti.com>
Tue, 9 Sep 2014 00:54:34 +0000 (17:54 -0700)
committerTony Lindgren <tony@atomide.com>
Thu, 11 Sep 2014 20:03:34 +0000 (13:03 -0700)
this will cache number of irqs. Also in preparation
for removal of irq_banks array.

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

index 652c15bff1763054f1a22c0c87adc369ad70964b..82b8d383ab9c07314dc6c1c3fbd2b27f1f886f83 100644 (file)
@@ -70,6 +70,7 @@ static struct omap_irq_bank {
 
 static struct irq_domain *domain;
 static void __iomem *omap_irq_base;
+static int omap_nr_irqs = 96;
 
 /* Structure to save interrupt controller context */
 struct omap3_intc_regs {
@@ -170,6 +171,8 @@ static void __init omap_init_irq(u32 base, int nr_irqs,
        if (WARN_ON(!omap_irq_base))
                return;
 
+       omap_nr_irqs = nr_irqs;
+
        irq_base = irq_alloc_descs(-1, 0, nr_irqs, 0);
        if (irq_base < 0) {
                pr_warn("Couldn't allocate IRQ numbers\n");