aboutsummaryrefslogtreecommitdiffstats
path: root/arch/metag
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2016-07-14 13:10:13 -0400
committerJames Hogan <james.hogan@imgtec.com>2016-07-15 04:55:49 -0400
commitfb2bb461e2d8c3af659c8a501d642a735b3ddadc (patch)
tree2d4ff7c7c696c4cb1eb0a1a3f412d8d49e4a5443 /arch/metag
parent986724dd3501f808fbe94f7128d4b8227200d706 (diff)
metag: Remove duplicate KERN_<LEVEL> prefix
Use a bare printk to avoid a duplicate KERN_<LEVEL> in logging output. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: James Hogan <james.hogan@imgtec.com>
Diffstat (limited to 'arch/metag')
-rw-r--r--arch/metag/mm/fault.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/metag/mm/fault.c b/arch/metag/mm/fault.c
index f57edca63609..73b3c50f517d 100644
--- a/arch/metag/mm/fault.c
+++ b/arch/metag/mm/fault.c
@@ -187,7 +187,7 @@ bad_area_nosemaphore:
187 187
188 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) && 188 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
189 printk_ratelimit()) { 189 printk_ratelimit()) {
190 pr_info("%s%s[%d]: segfault at %lx pc %08x sp %08x write %d trap %#x (%s)", 190 printk("%s%s[%d]: segfault at %lx pc %08x sp %08x write %d trap %#x (%s)",
191 task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG, 191 task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG,
192 tsk->comm, task_pid_nr(tsk), address, 192 tsk->comm, task_pid_nr(tsk), address,
193 regs->ctx.CurrPC, regs->ctx.AX[0].U0, 193 regs->ctx.CurrPC, regs->ctx.AX[0].U0,