diff options
author | Jeffrin Jose <ahiliation@yahoo.co.in> | 2012-05-16 15:03:07 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-17 12:48:29 -0400 |
commit | a7edf6823a76a06082ac1e60471706a380495f6c (patch) | |
tree | 0df67680833a1673fecf63f4a3dd6717f9a6d577 /drivers/usb/storage | |
parent | 32535bd5637d3152f944f124bcc82d498892ba1b (diff) |
USB: storage: fixed C99 comment issue.
Fixed C99 comment issue in drivers/usb/storage/usb.c
found using checkpatch.pl tool.
Signed-off-by: Jeffrin Jose <ahiliation@yahoo.co.in>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/storage')
-rw-r--r-- | drivers/usb/storage/usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c index 2653e73db623..7ad1a8b2d80f 100644 --- a/drivers/usb/storage/usb.c +++ b/drivers/usb/storage/usb.c | |||
@@ -261,7 +261,7 @@ EXPORT_SYMBOL_GPL(usb_stor_post_reset); | |||
261 | void fill_inquiry_response(struct us_data *us, unsigned char *data, | 261 | void fill_inquiry_response(struct us_data *us, unsigned char *data, |
262 | unsigned int data_len) | 262 | unsigned int data_len) |
263 | { | 263 | { |
264 | if (data_len<36) // You lose. | 264 | if (data_len<36) /* You lose. */ |
265 | return; | 265 | return; |
266 | 266 | ||
267 | memset(data+8, ' ', 28); | 267 | memset(data+8, ' ', 28); |