|
@@ -53,10 +53,7 @@ static void dump_mem(const char *, const char *, unsigned long, unsigned long);
|
|
|
void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame)
|
|
|
{
|
|
|
#ifdef CONFIG_KALLSYMS
|
|
|
- char sym1[KSYM_SYMBOL_LEN], sym2[KSYM_SYMBOL_LEN];
|
|
|
- sprint_symbol(sym1, where);
|
|
|
- sprint_symbol(sym2, from);
|
|
|
- printk("[<%08lx>] (%s) from [<%08lx>] (%s)\n", where, sym1, from, sym2);
|
|
|
+ printk("[<%08lx>] (%pS) from [<%08lx>] (%pS)\n", where, (void *)where, from, (void *)from);
|
|
|
#else
|
|
|
printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from);
|
|
|
#endif
|