Skip to content

Commit 8351bad

Browse files
Dan Carpenterhdeller
authored andcommitted
parisc: fix a printk
We want to do a pr_cont() here and not a pr_warn(). Fixes: b391667 ("parisc: Report trap type as human readable string") Signed-off-by: Dan Carpenter <[email protected]> Signed-off-by: Helge Deller <[email protected]>
1 parent e28f701 commit 8351bad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/parisc/mm/fault.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,8 @@ show_signal_msg(struct pt_regs *regs, unsigned long code,
238238
vma ? ',':'\n');
239239

240240
if (vma)
241-
pr_warn(KERN_CONT " vm_start = 0x%08lx, vm_end = 0x%08lx\n",
242-
vma->vm_start, vma->vm_end);
241+
pr_cont(" vm_start = 0x%08lx, vm_end = 0x%08lx\n",
242+
vma->vm_start, vma->vm_end);
243243

244244
show_regs(regs);
245245
}

0 commit comments

Comments
 (0)