Commit a7edf682 authored by Jeffrin Jose's avatar Jeffrin Jose Committed by Greg Kroah-Hartman

USB: storage: fixed C99 comment issue.

Fixed C99 comment issue in drivers/usb/storage/usb.c
found using checkpatch.pl tool.
Signed-off-by: default avatarJeffrin Jose <ahiliation@yahoo.co.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 32535bd5
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment