Commit 48d480b0 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Malta: Fix off by one bug in interrupt handler.

Fairly cosmetic as it would only affect VSMP / SMTC kernels that don't
use vectored interrupts.

Found by Beth.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 6440fcfc
...@@ -256,7 +256,7 @@ asmlinkage void plat_irq_dispatch(void) ...@@ -256,7 +256,7 @@ asmlinkage void plat_irq_dispatch(void)
if (irq == MIPSCPU_INT_I8259A) if (irq == MIPSCPU_INT_I8259A)
malta_hw0_irqdispatch(); malta_hw0_irqdispatch();
else if (irq > 0) else if (irq >= 0)
do_IRQ(MIPS_CPU_IRQ_BASE + irq); do_IRQ(MIPS_CPU_IRQ_BASE + irq);
else else
spurious_interrupt(); spurious_interrupt();
......
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