We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ef7963 commit 4717fc1Copy full SHA for 4717fc1
arch/c6x/kernel/traps.c
@@ -11,7 +11,6 @@
11
#include <linux/module.h>
12
#include <linux/ptrace.h>
13
#include <linux/sched/debug.h>
14
-#include <linux/kallsyms.h>
15
#include <linux/bug.h>
16
17
#include <asm/soc.h>
@@ -375,8 +374,7 @@ static void show_trace(unsigned long *stack, unsigned long *endstack)
375
374
if (i % 5 == 0)
376
pr_debug("\n ");
377
#endif
378
- pr_debug(" [<%08lx>]", addr);
379
- print_symbol(" %s\n", addr);
+ pr_debug(" [<%08lx>] %pS\n", addr, (void *)addr);
380
i++;
381
}
382
0 commit comments