diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2005-06-13 19:53:38 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 19:31:20 +0100 |
commit | 68e4a86c8010d15ec844d06f45cd564631f2fa7e (patch) | |
tree | 6ccdebd4f547d705853837b49286bc63871dd213 /arch/mips/dec | |
parent | a93500037e6cf1d08ce112444386f408a047b548 (diff) |
This interrupt is *always* handled -- MIPS_BE_DISCARD just means
no further action wanted.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/dec')
-rw-r--r-- | arch/mips/dec/ecc-berr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/dec/ecc-berr.c b/arch/mips/dec/ecc-berr.c index 6dbce92eb068..c4842096e50d 100644 --- a/arch/mips/dec/ecc-berr.c +++ b/arch/mips/dec/ecc-berr.c @@ -203,7 +203,7 @@ irqreturn_t dec_ecc_be_interrupt(int irq, void *dev_id, struct pt_regs *regs) int action = dec_ecc_be_backend(regs, 0, 1); if (action == MIPS_BE_DISCARD) - return IRQ_NONE; + return IRQ_HANDLED; /* * FIXME: Find affected processes and kill them, otherwise we |