summaryrefslogtreecommitdiffstats
path: root/arch/mips/sibyte
diff options
context:
space:
mode:
authorRalf Baechle2006-10-03 15:42:02 +0200
committerRalf Baechle2006-10-03 18:59:17 +0200
commit34c2dd01fd10268fb8f362c8275f75517770e286 (patch)
tree4f3e1f05e544ed090e8231cb599fec76fcea4d8d /arch/mips/sibyte
parent[MIPS] SB1250: Interrupt handler fixes (diff)
downloadkernel-qcow2-linux-34c2dd01fd10268fb8f362c8275f75517770e286.tar.gz
kernel-qcow2-linux-34c2dd01fd10268fb8f362c8275f75517770e286.tar.xz
kernel-qcow2-linux-34c2dd01fd10268fb8f362c8275f75517770e286.zip
[MIPS] BCM1480: Mask pending interrupts against c0_status.im.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sibyte')
-rw-r--r--arch/mips/sibyte/bcm1480/irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/sibyte/bcm1480/irq.c b/arch/mips/sibyte/bcm1480/irq.c
index a0222fa4416c..a46b75b23ecb 100644
--- a/arch/mips/sibyte/bcm1480/irq.c
+++ b/arch/mips/sibyte/bcm1480/irq.c
@@ -482,7 +482,7 @@ asmlinkage void plat_irq_dispatch(struct pt_regs *regs)
write_c0_compare(read_c0_count());
#endif
- pending = read_c0_cause();
+ pending = read_c0_cause() & read_c0_status();
#ifdef CONFIG_SIBYTE_BCM1480_PROF
if (pending & CAUSEF_IP7) /* Cpu performance counter interrupt */