Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);