Commit db2c8624 authored by Jeffrin Jose's avatar Jeffrin Jose Committed by Greg Kroah-Hartman

USB: storage: fixed keyword related space issues.

Fixed keyword related space issues found by
checkpatch.pl tool in drivers/usb/storage/usb.c
Signed-off-by: default avatarJeffrin Jose <ahiliation@yahoo.co.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a1631062
...@@ -265,7 +265,7 @@ void fill_inquiry_response(struct us_data *us, unsigned char *data, ...@@ -265,7 +265,7 @@ void fill_inquiry_response(struct us_data *us, unsigned char *data,
return; return;
memset(data+8, ' ', 28); memset(data+8, ' ', 28);
if(data[0]&0x20) { /* USB device currently not connected. Return if (data[0]&0x20) { /* USB device currently not connected. Return
peripheral qualifier 001b ("...however, the peripheral qualifier 001b ("...however, the
physical device is not currently connected physical device is not currently connected
to this logical unit") and leave vendor and to this logical unit") and leave vendor and
...@@ -298,7 +298,7 @@ static int usb_stor_control_thread(void * __us) ...@@ -298,7 +298,7 @@ static int usb_stor_control_thread(void * __us)
struct us_data *us = (struct us_data *)__us; struct us_data *us = (struct us_data *)__us;
struct Scsi_Host *host = us_to_host(us); struct Scsi_Host *host = us_to_host(us);
for(;;) { for (;;) {
US_DEBUGP("*** thread sleeping.\n"); US_DEBUGP("*** thread sleeping.\n");
if (wait_for_completion_interruptible(&us->cmnd_ready)) if (wait_for_completion_interruptible(&us->cmnd_ready))
break; break;
......
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