Cut'n paste error in 2.4 arch/mips/kernel/traps.c. Please apply. Index: traps.c =================================================================== RCS file: /home/cvs/linux/arch/mips/kernel/traps.c,v retrieving revision 1.99.2.62 diff -u -r1.99.2.62 traps.c --- traps.c 15 Dec 2003 20:13:36 -0000 1.99.2.62 +++ traps.c 8 Jan 2004 14:07:41 -0000 @@ -237,7 +237,7 @@ */ printk("epc : %08lx %s\n", regs->cp0_epc, print_tainted()); printk("Status: %08lx\n", regs->cp0_status); - printk("epc : %08lx\n", regs->cp0_cause); + printk("Cause : %08lx\n", regs->cp0_cause); printk("PrId : %08x\n", read_c0_prid()); } --- Atsushi Nemoto