mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-24 21:24:00 +08:00
Staging: line6: driver: fix up sparse warnings
minor stuff. Cc: Markus Grabner <grabner@icg.tugraz.at> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
74112d3f3a
commit
1e18c0d5b4
@ -399,7 +399,7 @@ static void line6_data_received(struct urb *urb)
|
||||
static int line6_send(struct usb_line6 *line6, unsigned char *buf, size_t len)
|
||||
{
|
||||
int retval;
|
||||
unsigned int partial;
|
||||
int partial;
|
||||
|
||||
#if DO_DUMP_URB_SEND
|
||||
line6_write_hexdump(line6, 'S', buf, len);
|
||||
@ -684,11 +684,11 @@ static int line6_probe(struct usb_interface *interface, const struct usb_device_
|
||||
|
||||
/* check vendor and product id */
|
||||
for (devtype = ARRAY_SIZE(line6_id_table) - 1; devtype--;) {
|
||||
u16 vendor = le16_to_cpu(usbdev->descriptor.idVendor);
|
||||
u16 product = le16_to_cpu(usbdev->descriptor.idProduct);
|
||||
u16 idVendor = le16_to_cpu(usbdev->descriptor.idVendor);
|
||||
u16 idProduct = le16_to_cpu(usbdev->descriptor.idProduct);
|
||||
|
||||
if (vendor == line6_id_table[devtype].idVendor
|
||||
&& product == line6_id_table[devtype].idProduct)
|
||||
if (idVendor == line6_id_table[devtype].idVendor
|
||||
&& idProduct == line6_id_table[devtype].idProduct)
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user