diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2001-05-12 22:38:46 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2001-05-12 22:38:46 +0000 |
commit | 0dbda7c681af1b63fb277f0e4634c7b5908fc951 (patch) | |
tree | f5026fd26f5218a8c5f043f51d83b3916739763d /arch/mips/kernel/irq.c | |
parent | 3cffdc0053293314572890f9224e306388f2b95b (diff) |
Two minor bug fixes for the new interrupt code.
Diffstat (limited to 'arch/mips/kernel/irq.c')
-rw-r--r-- | arch/mips/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/irq.c b/arch/mips/kernel/irq.c index 7a779e2dd..39956dc0c 100644 --- a/arch/mips/kernel/irq.c +++ b/arch/mips/kernel/irq.c @@ -287,7 +287,7 @@ asmlinkage unsigned int do_IRQ(int irq, struct pt_regs *regs) */ for (;;) { spin_unlock(&desc->lock); - handle_IRQ_event(irq, ®s, action); + handle_IRQ_event(irq, regs, action); spin_lock(&desc->lock); if (!(desc->status & IRQ_PENDING)) |