From: Thiemo Seufer Date: Wed, 5 Jul 2006 13:32:51 +0000 (+0100) Subject: [MIPS] BCM1480: Fix fatal typo in the rewritten interrupt handler. X-Git-Tag: v2.6.18-rc2~81^2~31 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5af1c7a4d4942812c5172cc0806854837264fff5;p=karo-tx-linux.git [MIPS] BCM1480: Fix fatal typo in the rewritten interrupt handler. Signed-off-by: Thiemo Seufer Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/sibyte/bcm1480/irq.c b/arch/mips/sibyte/bcm1480/irq.c index cab78fb5a9ac..ed325f0ab28a 100644 --- a/arch/mips/sibyte/bcm1480/irq.c +++ b/arch/mips/sibyte/bcm1480/irq.c @@ -534,7 +534,7 @@ asmlinkage void plat_irq_dispatch(struct pt_regs *regs) mask_l = __raw_readq( IOADDR(base + R_BCM1480_IMR_INTERRUPT_STATUS_BASE_L)); - if (!mask_h) { + if (mask_h) { if (mask_h ^ 1) do_IRQ(63 - dclz(mask_h), regs); else