Browse Source

USB: speedtch.c fix sparse shadowed variable warning

i is used only as a for-loop index no need to declare another.
drivers/usb/atm/speedtch.c:832:7: warning: symbol 'i' shadows an earlier one
drivers/usb/atm/speedtch.c:766:6: originally declared here

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Harvey Harrison 17 years ago
parent
commit
abe28c00b9
1 changed files with 0 additions and 1 deletions
  1. 0 1
      drivers/usb/atm/speedtch.c

+ 0 - 1
drivers/usb/atm/speedtch.c

@@ -829,7 +829,6 @@ static int speedtch_bind(struct usbatm_data *usbatm,
 	if (use_isoc) {
 	if (use_isoc) {
 		const struct usb_host_interface *desc = data_intf->cur_altsetting;
 		const struct usb_host_interface *desc = data_intf->cur_altsetting;
 		const __u8 target_address = USB_DIR_IN | usbatm->driver->isoc_in;
 		const __u8 target_address = USB_DIR_IN | usbatm->driver->isoc_in;
-		int i;
 
 
 		use_isoc = 0; /* fall back to bulk if endpoint not found */
 		use_isoc = 0; /* fall back to bulk if endpoint not found */