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>
This commit is contained in:
parent
10f4dd784f
commit
6bc52ef35c
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user