Commit 5db0ebea authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] m68knommu: mm/5307/vectors.c printk cleanup

From: <gerg@snapgear.com>

Add type field to printk call.  Original patch supplied bu kernel janitors.
parent 810738b6
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
asmlinkage void dbginterrupt_c(struct frame *fp) asmlinkage void dbginterrupt_c(struct frame *fp)
{ {
extern void dump(struct pt_regs *fp); extern void dump(struct pt_regs *fp);
printk("%s(%d): BUS ERROR TRAP\n", __FILE__, __LINE__); printk(KERN_DEBUG "%s(%d): BUS ERROR TRAP\n", __FILE__, __LINE__);
dump((struct pt_regs *) fp); dump((struct pt_regs *) fp);
asm("halt"); asm("halt");
} }
......
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