Ver Fonte

[MIPS] BCM1480: Fix fatal typo in the rewritten interrupt handler.

Signed-off-by: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Thiemo Seufer há 19 anos atrás
pai
commit
5af1c7a4d4
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      arch/mips/sibyte/bcm1480/irq.c

+ 1 - 1
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