usb-storage: SCSI glue: use dev_err instead of printk
Follow common practice and retire printk(KERN_ERR ...) in favor of dev_err(). Cc: Alan Stern <stern@rowland.harvard.edu> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: usb-storage@lists.one-eyed-alien.net Signed-off-by: Matthias Maennich <maennich@google.com> Link: https://lore.kernel.org/r/20191002110312.75749-1-maennich@google.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
54ecb8f702
commit
3055c92c7d
@@ -379,8 +379,8 @@ static int queuecommand_lck(struct scsi_cmnd *srb,
|
||||
|
||||
/* check for state-transition errors */
|
||||
if (us->srb != NULL) {
|
||||
printk(KERN_ERR "usb-storage: Error in %s: us->srb = %p\n",
|
||||
__func__, us->srb);
|
||||
dev_err(&us->pusb_intf->dev,
|
||||
"Error in %s: us->srb = %p\n", __func__, us->srb);
|
||||
return SCSI_MLQUEUE_HOST_BUSY;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user