3.16.57-rc1 review patch. If anyone has any objections, please let me know. ------------------ From: Sergey Senozhatsky <sergey.senozhatsky.work@xxxxxxxxx> commit 4ef7963843d3243260aa335dfb9cb2fede06aacf upstream. print_symbol() is a very old API that has been obsoleted by %pS format specifier in a normal printk() call. Replace print_symbol() with a direct printk("%pS") call. Link: http://lkml.kernel.org/r/20171211125025.2270-3-sergey.senozhatsky@xxxxxxxxx To: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> To: Russell King <linux@xxxxxxxxxxxxxxx> To: Catalin Marinas <catalin.marinas@xxxxxxx> To: Mark Salter <msalter@xxxxxxxxxx> To: Tony Luck <tony.luck@xxxxxxxxx> To: David Howells <dhowells@xxxxxxxxxx> To: Yoshinori Sato <ysato@xxxxxxxxxxxxxxxxxxxx> To: Guan Xuetao <gxt@xxxxxxxxxxxxxxx> To: Borislav Petkov <bp@xxxxxxxxx> To: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> To: Thomas Gleixner <tglx@xxxxxxxxxxxxx> To: Peter Zijlstra <peterz@xxxxxxxxxxxxx> To: Vineet Gupta <vgupta@xxxxxxxxxxxx> To: Fengguang Wu <fengguang.wu@xxxxxxxxx> Cc: Steven Rostedt <rostedt@xxxxxxxxxxx> Cc: Petr Mladek <pmladek@xxxxxxxx> Cc: LKML <linux-kernel@xxxxxxxxxxxxxxx> Cc: linux-arm-kernel@xxxxxxxxxxxxxxxxxxx Cc: linux-c6x-dev@xxxxxxxxxxxxx Cc: linux-ia64@xxxxxxxxxxxxxxx Cc: linux-am33-list@xxxxxxxxxx Cc: linux-sh@xxxxxxxxxxxxxxx Cc: linux-edac@xxxxxxxxxxxxxxx Cc: x86@xxxxxxxxxx Cc: linux-snps-arc@xxxxxxxxxxxxxxxxxxx Cc: Catalin Marinas <catalin.marinas@xxxxxxx> Cc: Will Deacon <will.deacon@xxxxxxx> Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@xxxxxxxxx> [pmladek@xxxxxxxx: updated commit message] Signed-off-by: Petr Mladek <pmladek@xxxxxxxx> [bwh: Backported to 3.16: adjust context] Signed-off-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx> --- arch/arm64/kernel/process.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/arch/arm64/kernel/process.c +++ b/arch/arm64/kernel/process.c @@ -31,7 +31,6 @@ #include <linux/delay.h> #include <linux/reboot.h> #include <linux/interrupt.h> -#include <linux/kallsyms.h> #include <linux/init.h> #include <linux/cpu.h> #include <linux/elfcore.h> @@ -198,8 +197,8 @@ void __show_regs(struct pt_regs *regs) } show_regs_print_info(KERN_DEFAULT); - print_symbol("pc : %s\n", regs->pc); - print_symbol("lr : %s\n", lr); + printk("pc : %pS\n", (void *)regs->pc); + printk("lr : %pS\n", (void *)lr); printk("sp : %016llx pstate : %08llx\n", sp, regs->pstate); for (i = top_reg; i >= 0; i--) { printk("x%-2d: %016llx ", i, regs->regs[i]);