Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 69448c2a authored by Joe Perches's avatar Joe Perches Committed by Russell King
Browse files

ARM: arch/arm/kernel/traps.c: Convert sprintf_symbol to %pS

parent 235584b6
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -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