Explorar o código

drivers/usb/host/ohci-hcd.c: fix warning: variable ... set but not used

Fix:
ohci-hcd.c: In function 'dl_transfer_length':
ohci-hcd.c:968:8: warning: variable 'tdINFO' set but not used [-Wunused-but-set-variable]

Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Remy Bohmer <linux@bohmer.net>
Acked-by: Remy Bohmer <linux@bohmer.net>
Wolfgang Denk %!s(int64=13) %!d(string=hai) anos
pai
achega
6bc52ef35c
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      drivers/usb/host/ohci-hcd.c

+ 1 - 2
drivers/usb/host/ohci-hcd.c

@@ -965,10 +965,9 @@ static void td_submit_job(struct usb_device *dev, unsigned long pipe,
 
 static void dl_transfer_length(td_t *td)
 {
-	__u32 tdINFO, tdBE, tdCBP;
+	__u32 tdBE, tdCBP;
 	urb_priv_t *lurb_priv = td->ed->purb;
 
-	tdINFO = m32_swap(td->hwINFO);
 	tdBE   = m32_swap(td->hwBE);
 	tdCBP  = m32_swap(td->hwCBP);