]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
USB: storage: fixed C99 comment issue.
authorJeffrin Jose <ahiliation@yahoo.co.in>
Wed, 16 May 2012 19:03:07 +0000 (00:33 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 May 2012 16:48:29 +0000 (09:48 -0700)
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>
drivers/usb/storage/usb.c

index 2653e73db6233eabcf83f527019451820157e65d..7ad1a8b2d80f16355389ba93bbd43dc49a0b32f4 100644 (file)
@@ -261,7 +261,7 @@ EXPORT_SYMBOL_GPL(usb_stor_post_reset);
 void fill_inquiry_response(struct us_data *us, unsigned char *data,
                unsigned int data_len)
 {
-       if (data_len<36) // You lose.
+       if (data_len<36) /* You lose. */
                return;
 
        memset(data+8, ' ', 28);