projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e61e85
)
[MIPS] BCM1480: Fix fatal typo in the rewritten interrupt handler.
author
Thiemo Seufer
<ths@networkno.de>
Wed, 5 Jul 2006 13:32:51 +0000
(14:32 +0100)
committer
Ralf Baechle
<ralf@linux-mips.org>
Thu, 13 Jul 2006 20:26:05 +0000
(21:26 +0100)
Signed-off-by: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/sibyte/bcm1480/irq.c
patch
|
blob
|
history
diff --git
a/arch/mips/sibyte/bcm1480/irq.c
b/arch/mips/sibyte/bcm1480/irq.c
index cab78fb5a9ac83deae6a762e3c447683e1c2b4d1..ed325f0ab28a48be80b366feaa0317c3b0b4f496 100644
(file)
--- 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