Commit e3b0e73f authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] m68knommu: use KERN_DEBUG in debug printk()'s

Use KERN_DEBUG in all debugging printk() output.

This patch originally from the kernel janitors.
parent 766a313a
......@@ -604,7 +604,7 @@ static void setup_frame (int sig, struct k_sigaction *ka,
struct pt_regs *tregs =
(struct pt_regs *)((ulong)regs + regs->stkadj);
#if DEBUG
printk("Performing stackadjust=%04x\n", regs->stkadj);
printk(KERN_DEBUG "Performing stackadjust=%04x\n", regs->stkadj);
#endif
/* This must be copied with decreasing addresses to
handle overlaps. */
......@@ -673,7 +673,7 @@ static void setup_rt_frame (int sig, struct k_sigaction *ka, siginfo_t *info,
struct pt_regs *tregs =
(struct pt_regs *)((ulong)regs + regs->stkadj);
#if DEBUG
printk("Performing stackadjust=%04x\n", regs->stkadj);
printk(KERN_DEBUG "Performing stackadjust=%04x\n", regs->stkadj);
#endif
/* This must be copied with decreasing addresses to
handle overlaps. */
......
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