Commit 8140de1e authored by Matthias Maennich's avatar Matthias Maennich Committed by Jessica Yu

usb-storage: remove single-use define for debugging

USB_STORAGE was defined as "usb-storage: " and used in a single location
as argument to printk. In order to be able to use the name
'USB_STORAGE', drop the definition and use the string directly for the
printk call.
Reviewed-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarMatthias Maennich <maennich@google.com>
Signed-off-by: default avatarJessica Yu <jeyu@kernel.org>
parent c4f4af40
...@@ -29,8 +29,6 @@ ...@@ -29,8 +29,6 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#define USB_STORAGE "usb-storage: "
#ifdef CONFIG_USB_STORAGE_DEBUG #ifdef CONFIG_USB_STORAGE_DEBUG
void usb_stor_show_command(const struct us_data *us, struct scsi_cmnd *srb); void usb_stor_show_command(const struct us_data *us, struct scsi_cmnd *srb);
void usb_stor_show_sense(const struct us_data *us, unsigned char key, void usb_stor_show_sense(const struct us_data *us, unsigned char key,
......
...@@ -379,7 +379,7 @@ static int queuecommand_lck(struct scsi_cmnd *srb, ...@@ -379,7 +379,7 @@ static int queuecommand_lck(struct scsi_cmnd *srb,
/* check for state-transition errors */ /* check for state-transition errors */
if (us->srb != NULL) { if (us->srb != NULL) {
printk(KERN_ERR USB_STORAGE "Error in %s: us->srb = %p\n", printk(KERN_ERR "usb-storage: Error in %s: us->srb = %p\n",
__func__, us->srb); __func__, us->srb);
return SCSI_MLQUEUE_HOST_BUSY; return SCSI_MLQUEUE_HOST_BUSY;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment