From: Jeffrin Jose Date: Wed, 16 May 2012 19:03:07 +0000 (+0530) Subject: USB: storage: fixed C99 comment issue. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a7edf6823a76a06082ac1e60471706a380495f6c;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c index 2653e73db623..7ad1a8b2d80f 100644 --- a/drivers/usb/storage/usb.c +++ b/drivers/usb/storage/usb.c @@ -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);