aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/mm/fault.c
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2020-06-17 16:36:32 +0200
committerRich Felker <dalias@libc.org>2020-08-14 22:05:07 -0400
commitfd722f25a6e4aecefbc58047a690076e57015197 (patch)
tree7d12e1b79bcee2f3c714e9a714b2194baec186c3 /arch/sh/mm/fault.c
parentsh: fault: Fix duplicate printing of "PC:" (diff)
downloadlinux-dev-fd722f25a6e4aecefbc58047a690076e57015197.tar.xz
linux-dev-fd722f25a6e4aecefbc58047a690076e57015197.zip
Revert "sh: add loglvl to printk_address()"
This reverts commit 2deebe4d56d638269a4a728086d64de5734b460a. printk_address() is always used as a continuation of the previous logging, hence it should not include a log level. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Rich Felker <dalias@libc.org>
Diffstat (limited to '')
-rw-r--r--arch/sh/mm/fault.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/mm/fault.c b/arch/sh/mm/fault.c
index acd1c7599498..92b1ce105f4b 100644
--- a/arch/sh/mm/fault.c
+++ b/arch/sh/mm/fault.c
@@ -213,7 +213,7 @@ show_fault_oops(struct pt_regs *regs, unsigned long address)
: "paging request",
address);
pr_alert("PC:");
- printk_address(regs->pc, 1, KERN_ALERT);
+ printk_address(regs->pc, 1);
show_pte(NULL, address);
}