Changed parameter name from __us to much more typical data after suggestion by Joe Perches. Fixed minor coding style issue as well. Signed-off-by: Niklas Lantau <niklaslantau@xxxxxxxxx> --- drivers/usb/storage/usb.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c index 90aa9c12ffac..075c4531b96d 100644 --- a/drivers/usb/storage/usb.c +++ b/drivers/usb/storage/usb.c @@ -295,9 +295,9 @@ void fill_inquiry_response(struct us_data *us, unsigned char *data, } EXPORT_SYMBOL_GPL(fill_inquiry_response); -static int usb_stor_control_thread(void * __us) +static int usb_stor_control_thread(void *data) { - struct us_data *us = (struct us_data *)__us; + struct us_data *us = data; struct Scsi_Host *host = us_to_host(us); struct scsi_cmnd *srb; @@ -926,9 +926,8 @@ static unsigned int usb_stor_sg_tablesize(struct usb_interface *intf) { struct usb_device *usb_dev = interface_to_usbdev(intf); - if (usb_dev->bus->sg_tablesize) { + if (usb_dev->bus->sg_tablesize) return usb_dev->bus->sg_tablesize; - } return SG_ALL; } -- 2.33.0