Commit 314727fe authored by Markos Chandras's avatar Markos Chandras Committed by Ralf Baechle

MIPS: traps: Replace printk with pr_err for MC exceptions

printk should not be used without a KERN_ facility level
Signed-off-by: default avatarMarkos Chandras <markos.chandras@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/8399/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent e12aa828
...@@ -1427,12 +1427,12 @@ asmlinkage void do_mcheck(struct pt_regs *regs) ...@@ -1427,12 +1427,12 @@ asmlinkage void do_mcheck(struct pt_regs *regs)
show_regs(regs); show_regs(regs);
if (multi_match) { if (multi_match) {
printk("Index : %0x\n", read_c0_index()); pr_err("Index : %0x\n", read_c0_index());
printk("Pagemask: %0x\n", read_c0_pagemask()); pr_err("Pagemask: %0x\n", read_c0_pagemask());
printk("EntryHi : %0*lx\n", field, read_c0_entryhi()); pr_err("EntryHi : %0*lx\n", field, read_c0_entryhi());
printk("EntryLo0: %0*lx\n", field, read_c0_entrylo0()); pr_err("EntryLo0: %0*lx\n", field, read_c0_entrylo0());
printk("EntryLo1: %0*lx\n", field, read_c0_entrylo1()); pr_err("EntryLo1: %0*lx\n", field, read_c0_entrylo1());
printk("\n"); pr_err("\n");
dump_tlb_all(); dump_tlb_all();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment