diff options
author | Thiemo Seufer <ths@networkno.de> | 2006-07-05 09:32:51 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-07-13 16:26:05 -0400 |
commit | 5af1c7a4d4942812c5172cc0806854837264fff5 (patch) | |
tree | d3c50a400dcc8b5ef4b6d7111a448bbe126de3f7 | |
parent | 6e61e85b0980f7b88cd5c4b822386ed00dd7e295 (diff) |
[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>
-rw-r--r-- | arch/mips/sibyte/bcm1480/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
534 | mask_l = __raw_readq( | 534 | mask_l = __raw_readq( |
535 | IOADDR(base + R_BCM1480_IMR_INTERRUPT_STATUS_BASE_L)); | 535 | IOADDR(base + R_BCM1480_IMR_INTERRUPT_STATUS_BASE_L)); |
536 | 536 | ||
537 | if (!mask_h) { | 537 | if (mask_h) { |
538 | if (mask_h ^ 1) | 538 | if (mask_h ^ 1) |
539 | do_IRQ(63 - dclz(mask_h), regs); | 539 | do_IRQ(63 - dclz(mask_h), regs); |
540 | else | 540 | else |