aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/storage/usb.c
diff options
context:
space:
mode:
authorJeffrin Jose <ahiliation@yahoo.co.in>2012-05-17 00:34:28 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-17 09:48:29 -0700
commitdb2c8624847b0b67c04c3d6271823f3fee671e26 (patch)
treea68d236b56ff8edd3cb6bd66e68c27f6cb9183a4 /drivers/usb/storage/usb.c
parenta1631062f2f2e1b57108e810983a077d6b847092 (diff)
downloadlinux-db2c8624847b0b67c04c3d6271823f3fee671e26.tar.gz
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: Jeffrin Jose <ahiliation@yahoo.co.in> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/storage/usb.c')
-rw-r--r--drivers/usb/storage/usb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c
index 16d49da39459e7..e23c30ab66dae9 100644
--- a/drivers/usb/storage/usb.c
+++ b/drivers/usb/storage/usb.c
@@ -265,7 +265,7 @@ void fill_inquiry_response(struct us_data *us, unsigned char *data,
return;
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
physical device is not currently connected
to this logical unit") and leave vendor and
@@ -298,7 +298,7 @@ static int usb_stor_control_thread(void * __us)
struct us_data *us = (struct us_data *)__us;
struct Scsi_Host *host = us_to_host(us);
- for(;;) {
+ for (;;) {
US_DEBUGP("*** thread sleeping.\n");
if (wait_for_completion_interruptible(&us->cmnd_ready))
break;