dect
/
linux-2.6
Archived
13
0
Fork 0

[MIPS] Fix do_default_vi to use get_irq_regs to get the irq register ptr.

Harmless bug because this function is only called in case of another
kernel bug anyway which is also why this was missed for so long.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Ralf Baechle 2007-05-06 17:51:59 +01:00
parent 99af900aef
commit 856a514b40
1 changed files with 2 additions and 2 deletions

View File

@ -927,9 +927,9 @@ asmlinkage void do_reserved(struct pt_regs *regs)
(regs->cp0_cause & 0x7f) >> 2);
}
static asmlinkage void do_default_vi(struct pt_regs *regs)
static asmlinkage void do_default_vi(void)
{
show_regs(regs);
show_regs(get_irq_regs());
panic("Caught unexpected vectored interrupt.");
}