diff options
Diffstat (limited to 'arch/arm/kernel/traps.c')
-rw-r--r-- | arch/arm/kernel/traps.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/arm/kernel/traps.c b/arch/arm/kernel/traps.c index 87abca018054..e02f4f7537c5 100644 --- a/arch/arm/kernel/traps.c +++ b/arch/arm/kernel/traps.c | |||
@@ -55,10 +55,7 @@ static void dump_mem(const char *, const char *, unsigned long, unsigned long); | |||
55 | void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame) | 55 | void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame) |
56 | { | 56 | { |
57 | #ifdef CONFIG_KALLSYMS | 57 | #ifdef CONFIG_KALLSYMS |
58 | char sym1[KSYM_SYMBOL_LEN], sym2[KSYM_SYMBOL_LEN]; | 58 | printk("[<%08lx>] (%pS) from [<%08lx>] (%pS)\n", where, (void *)where, from, (void *)from); |
59 | sprint_symbol(sym1, where); | ||
60 | sprint_symbol(sym2, from); | ||
61 | printk("[<%08lx>] (%s) from [<%08lx>] (%s)\n", where, sym1, from, sym2); | ||
62 | #else | 59 | #else |
63 | printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from); | 60 | printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from); |
64 | #endif | 61 | #endif |