diff options
Diffstat (limited to 'arch/arm/mach-omap2/irq.c')
-rw-r--r-- | arch/arm/mach-omap2/irq.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c index 23049c487c47..0b9a23d721f4 100644 --- a/arch/arm/mach-omap2/irq.c +++ b/arch/arm/mach-omap2/irq.c | |||
@@ -110,7 +110,7 @@ static void omap_mask_irq(struct irq_data *d) | |||
110 | unsigned int irq = d->irq; | 110 | unsigned int irq = d->irq; |
111 | int offset = irq & (~(IRQ_BITS_PER_REG - 1)); | 111 | int offset = irq & (~(IRQ_BITS_PER_REG - 1)); |
112 | 112 | ||
113 | if (cpu_is_omap34xx()) { | 113 | if (cpu_is_omap34xx() && !cpu_is_ti816x()) { |
114 | int spurious = 0; | 114 | int spurious = 0; |
115 | 115 | ||
116 | /* | 116 | /* |
@@ -205,6 +205,9 @@ void __init omap_init_irq(void) | |||
205 | 205 | ||
206 | BUG_ON(!base); | 206 | BUG_ON(!base); |
207 | 207 | ||
208 | if (cpu_is_ti816x()) | ||
209 | bank->nr_irqs = 128; | ||
210 | |||
208 | /* Static mapping, never released */ | 211 | /* Static mapping, never released */ |
209 | bank->base_reg = ioremap(base, SZ_4K); | 212 | bank->base_reg = ioremap(base, SZ_4K); |
210 | if (!bank->base_reg) { | 213 | if (!bank->base_reg) { |