Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

scsi: Use pr_warn instead of pr_warning

As said in commit f2c2cbcc35d4 ("powerpc: Use pr_warn instead of
pr_warning"), removing pr_warning so all logging messages use a
consistent <prefix>_warn style. Let's do it.

Link: http://lkml.kernel.org/r/20191018031850.48498-21-wangkefeng.wang@huawei.com
To: linux-kernel@vger.kernel.org
Cc: "James E.J. Bottomley" <jejb@linux.ibm.com>
Cc: "Martin K. Petersen" <martin.petersen@oracle.com>
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>

authored by

Kefeng Wang and committed by
Petr Mladek
a2cc701b c6764121

+1 -1
+1 -1
drivers/scsi/a3000.c
··· 39 39 spin_unlock_irqrestore(instance->host_lock, flags); 40 40 return IRQ_HANDLED; 41 41 } 42 - pr_warning("Non-serviced A3000 SCSI-interrupt? ISTR = %02x\n", status); 42 + pr_warn("Non-serviced A3000 SCSI-interrupt? ISTR = %02x\n", status); 43 43 return IRQ_NONE; 44 44 } 45 45