mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
parisc: fix a printk
We want to do a pr_cont() here and not a pr_warn().
Fixes: b391667eb4
("parisc: Report trap type as human readable string")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
e28f701b21
commit
8351badf34
@ -238,8 +238,8 @@ show_signal_msg(struct pt_regs *regs, unsigned long code,
|
||||
vma ? ',':'\n');
|
||||
|
||||
if (vma)
|
||||
pr_warn(KERN_CONT " vm_start = 0x%08lx, vm_end = 0x%08lx\n",
|
||||
vma->vm_start, vma->vm_end);
|
||||
pr_cont(" vm_start = 0x%08lx, vm_end = 0x%08lx\n",
|
||||
vma->vm_start, vma->vm_end);
|
||||
|
||||
show_regs(regs);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user