minor stuff.

Cc: Markus Grabner <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
 drivers/staging/line6/driver.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/line6/driver.c b/drivers/staging/line6/driver.c
index 2585554..1d5a473 100644
--- a/drivers/staging/line6/driver.c
+++ b/drivers/staging/line6/driver.c
@@ -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;
        }
 
-- 
1.7.0.3

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to