mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02: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
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -238,7 +238,7 @@ show_signal_msg(struct pt_regs *regs, unsigned long code,
 | 
				
			||||||
		vma ? ',':'\n');
 | 
							vma ? ',':'\n');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (vma)
 | 
						if (vma)
 | 
				
			||||||
		pr_warn(KERN_CONT " vm_start = 0x%08lx, vm_end = 0x%08lx\n",
 | 
							pr_cont(" vm_start = 0x%08lx, vm_end = 0x%08lx\n",
 | 
				
			||||||
			vma->vm_start, vma->vm_end);
 | 
								vma->vm_start, vma->vm_end);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	show_regs(regs);
 | 
						show_regs(regs);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue