diff options
| author | Jeffrin Jose <ahiliation@yahoo.co.in> | 2012-05-16 15:04:28 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-17 12:48:29 -0400 |
| commit | db2c8624847b0b67c04c3d6271823f3fee671e26 (patch) | |
| tree | a68d236b56ff8edd3cb6bd66e68c27f6cb9183a4 | |
| parent | a1631062f2f2e1b57108e810983a077d6b847092 (diff) | |
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>
| -rw-r--r-- | drivers/usb/storage/usb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c index 16d49da39459..e23c30ab66da 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, | |||
| 265 | return; | 265 | return; |
| 266 | 266 | ||
| 267 | memset(data+8, ' ', 28); | 267 | memset(data+8, ' ', 28); |
| 268 | if(data[0]&0x20) { /* USB device currently not connected. Return | 268 | if (data[0]&0x20) { /* USB device currently not connected. Return |
| 269 | peripheral qualifier 001b ("...however, the | 269 | peripheral qualifier 001b ("...however, the |
| 270 | physical device is not currently connected | 270 | physical device is not currently connected |
| 271 | to this logical unit") and leave vendor and | 271 | to this logical unit") and leave vendor and |
| @@ -298,7 +298,7 @@ static int usb_stor_control_thread(void * __us) | |||
| 298 | struct us_data *us = (struct us_data *)__us; | 298 | struct us_data *us = (struct us_data *)__us; |
| 299 | struct Scsi_Host *host = us_to_host(us); | 299 | struct Scsi_Host *host = us_to_host(us); |
| 300 | 300 | ||
| 301 | for(;;) { | 301 | for (;;) { |
| 302 | US_DEBUGP("*** thread sleeping.\n"); | 302 | US_DEBUGP("*** thread sleeping.\n"); |
| 303 | if (wait_for_completion_interruptible(&us->cmnd_ready)) | 303 | if (wait_for_completion_interruptible(&us->cmnd_ready)) |
| 304 | break; | 304 | break; |
