From: Kefeng Wang Date: Mon, 20 Mar 2017 12:42:55 +0000 (+0800) Subject: arm64: drop unnecessary newlines in show_regs() X-Git-Tag: v4.12-rc1~92^2~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29d981217a5d091fb423763d0a6c8e390b20237b;p=thirdparty%2Flinux.git arm64: drop unnecessary newlines in show_regs() There are two unnecessary newlines, one is in show_regs, another is in __show_regs(), drop them. Signed-off-by: Kefeng Wang Signed-off-by: Catalin Marinas --- diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c index 043d373b83699..ae2a835898d71 100644 --- a/arch/arm64/kernel/process.c +++ b/arch/arm64/kernel/process.c @@ -205,12 +205,10 @@ void __show_regs(struct pt_regs *regs) pr_cont("\n"); } - printk("\n"); } void show_regs(struct pt_regs * regs) { - printk("\n"); __show_regs(regs); }