mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
arm920t/s3c24x0/usb_ohci.c: fix warning: variable ... set but not used
Fix: usb_ohci.c: In function 'dl_transfer_length': usb_ohci.c:768: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>
This commit is contained in:
parent
fad2e1b06c
commit
0841ca90f2
1 changed files with 1 additions and 2 deletions
|
@ -765,10 +765,9 @@ static void td_submit_job(struct usb_device *dev, unsigned long pipe,
|
|||
|
||||
static void dl_transfer_length(struct td *td)
|
||||
{
|
||||
__u32 tdINFO, tdBE, tdCBP;
|
||||
__u32 tdBE, tdCBP;
|
||||
struct urb_priv *lurb_priv = &urb_priv;
|
||||
|
||||
tdINFO = m32_swap(td->hwINFO);
|
||||
tdBE = m32_swap(td->hwBE);
|
||||
tdCBP = m32_swap(td->hwCBP);
|
||||
|
||||
|
|
Loading…
Reference in a new issue