aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/irq.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-omap2/irq.c')
-rw-r--r--arch/arm/mach-omap2/irq.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c
index 742bd0070e63..a5c748a4a56d 100644
--- a/arch/arm/mach-omap2/irq.c
+++ b/arch/arm/mach-omap2/irq.c
@@ -37,11 +37,9 @@ static struct omap_irq_bank {
37} __attribute__ ((aligned(4))) irq_banks[] = { 37} __attribute__ ((aligned(4))) irq_banks[] = {
38 { 38 {
39 /* MPU INTC */ 39 /* MPU INTC */
40 .base_reg = IO_ADDRESS(OMAP24XX_IC_BASE), 40 .base_reg = 0,
41 .nr_irqs = 96, 41 .nr_irqs = 96,
42 }, { 42 },
43 /* XXX: DSP INTC */
44 }
45}; 43};
46 44
47/* XXX: FIQ and additional INTC support (only MPU at the moment) */ 45/* XXX: FIQ and additional INTC support (only MPU at the moment) */
@@ -118,10 +116,8 @@ void __init omap_init_irq(void)
118 for (i = 0; i < ARRAY_SIZE(irq_banks); i++) { 116 for (i = 0; i < ARRAY_SIZE(irq_banks); i++) {
119 struct omap_irq_bank *bank = irq_banks + i; 117 struct omap_irq_bank *bank = irq_banks + i;
120 118
121 /* XXX */ 119 if (cpu_is_omap24xx())
122 if (!bank->base_reg) 120 bank->base_reg = IO_ADDRESS(OMAP24XX_IC_BASE);
123 continue;
124
125 omap_irq_bank_init_one(bank); 121 omap_irq_bank_init_one(bank);
126 122
127 nr_irqs += bank->nr_irqs; 123 nr_irqs += bank->nr_irqs;