summaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/traps.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-10-11 23:46:17 +0100
committerRalf Baechle <ralf@linux-mips.org>2007-10-11 23:46:17 +0100
commit9966db25defba4e1dce263246db25237bc24479f (patch)
tree5002f2849ebcceb57f40535798aa37dfbd841875 /arch/mips/kernel/traps.c
parent36cfbaad815908f54872a7b471e9a7a09b4084a4 (diff)
downloadop-kernel-dev-9966db25defba4e1dce263246db25237bc24479f.zip
op-kernel-dev-9966db25defba4e1dce263246db25237bc24479f.tar.gz
[MIPS] Make facility to convert CPU types to strings generally available.
So far /proc/cpuinfo has been the only user but human readable processor name are more useful than that for proc. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/traps.c')
-rw-r--r--arch/mips/kernel/traps.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c
index b3e408b..632bce1 100644
--- a/arch/mips/kernel/traps.c
+++ b/arch/mips/kernel/traps.c
@@ -295,7 +295,8 @@ void show_regs(struct pt_regs *regs)
if (1 <= cause && cause <= 5)
printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
- printk("PrId : %08x\n", read_c0_prid());
+ printk("PrId : %08x (%s)\n", read_c0_prid(),
+ cpu_name_string());
}
void show_registers(struct pt_regs *regs)
OpenPOWER on IntegriCloud