Skip to content

Commit

Permalink
USB: storage: fixed C99 comment issue.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jeffrin Jose authored and Greg Kroah-Hartman committed May 17, 2012
1 parent 32535bd commit a7edf68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/storage/usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a7edf68

Please sign in to comment.