Commit df127ee3 authored by Tony Lindgren's avatar Tony Lindgren

omap: Fix setting omap_irq_base for 2430

We need to test for 24xx not 242x. Otherwise interrupts won't work.
Reported-by: default avatarRajendra Nayak <rnayak@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 79b357c2
...@@ -320,7 +320,7 @@ static inline void omap_irq_base_init(void) ...@@ -320,7 +320,7 @@ static inline void omap_irq_base_init(void)
extern void __iomem *omap_irq_base; extern void __iomem *omap_irq_base;
#ifdef MULTI_OMAP2 #ifdef MULTI_OMAP2
if (cpu_is_omap242x()) if (cpu_is_omap24xx())
omap_irq_base = OMAP2_L4_IO_ADDRESS(OMAP24XX_IC_BASE); omap_irq_base = OMAP2_L4_IO_ADDRESS(OMAP24XX_IC_BASE);
else if (cpu_is_omap34xx()) else if (cpu_is_omap34xx())
omap_irq_base = OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE); omap_irq_base = OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment