dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Jeffrin Jose 2012-05-17 00:33:07 +05:30 committed by Greg Kroah-Hartman
parent 32535bd563
commit a7edf6823a
1 changed files with 1 additions and 1 deletions

View 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);