Skip to content

Commit 63ba82c

Browse files
committed
parisc: Reduce debug output in unwind code
Signed-off-by: Helge Deller <deller@gmx.de>
1 parent 2765b3e commit 63ba82c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/parisc/kernel/unwind.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
/* #define DEBUG 1 */
2727
#ifdef DEBUG
28-
#define dbg(x...) printk(x)
28+
#define dbg(x...) pr_debug(x)
2929
#else
3030
#define dbg(x...)
3131
#endif
@@ -182,7 +182,7 @@ int __init unwind_init(void)
182182
start = (long)&__start___unwind[0];
183183
stop = (long)&__stop___unwind[0];
184184

185-
printk("unwind_init: start = 0x%lx, end = 0x%lx, entries = %lu\n",
185+
dbg("unwind_init: start = 0x%lx, end = 0x%lx, entries = %lu\n",
186186
start, stop,
187187
(stop - start) / sizeof(struct unwind_table_entry));
188188

0 commit comments

Comments
 (0)