aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2018-06-28 16:21:24 -0400
committerHelge Deller <deller@gmx.de>2018-06-28 16:54:17 -0400
commit63ba82c0e63f1dd400d84e12f2142c2cb691aec1 (patch)
tree55393ecac223ae65cd25a084fe2ecb47aa5765f2
parent2765b3edc41bdf18960ca7e6b656fb933ac191d6 (diff)
parisc: Reduce debug output in unwind code
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--arch/parisc/kernel/unwind.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/kernel/unwind.c b/arch/parisc/kernel/unwind.c
index 143f90e2f9f3..2ef83d78eec4 100644
--- a/arch/parisc/kernel/unwind.c
+++ b/arch/parisc/kernel/unwind.c
@@ -25,7 +25,7 @@
25 25
26/* #define DEBUG 1 */ 26/* #define DEBUG 1 */
27#ifdef DEBUG 27#ifdef DEBUG
28#define dbg(x...) printk(x) 28#define dbg(x...) pr_debug(x)
29#else 29#else
30#define dbg(x...) 30#define dbg(x...)
31#endif 31#endif
@@ -182,7 +182,7 @@ int __init unwind_init(void)
182 start = (long)&__start___unwind[0]; 182 start = (long)&__start___unwind[0];
183 stop = (long)&__stop___unwind[0]; 183 stop = (long)&__stop___unwind[0];
184 184
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",
186 start, stop, 186 start, stop,
187 (stop - start) / sizeof(struct unwind_table_entry)); 187 (stop - start) / sizeof(struct unwind_table_entry));
188 188