diff options
| author | Christian Eggers <ceggers@gmx.de> | 2008-05-21 21:29:10 +0200 | 
|---|---|---|
| committer | Markus Klotzbuecher <mk@denx.de> | 2008-05-22 17:14:17 +0200 | 
| commit | fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c (patch) | |
| tree | ea00bf58ab97ffe25193ab6b3beba3cb42dd7f76 | |
| parent | 477434c63c2ea5baa5c6c4e43500786f436511ff (diff) | |
| download | olio-uboot-2014.01-fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c.tar.xz olio-uboot-2014.01-fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c.zip | |
Fix endianess conversion in usb_ohci.c
Signed-off-by: Christian Eggers <ceggers@gmx.de>
Signed-off-by: Markus Klotzbuecher <mk@denx.de>
| -rw-r--r-- | drivers/usb/usb_ohci.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/drivers/usb/usb_ohci.c b/drivers/usb/usb_ohci.c index 318478afa..fd60edbb3 100644 --- a/drivers/usb/usb_ohci.c +++ b/drivers/usb/usb_ohci.c @@ -1221,9 +1221,9 @@ pkt_print(NULL, dev, pipe, buffer, transfer_len, cmd, "SUB(rh)", usb_pipein(pipe  	}  	bmRType_bReq  = cmd->requesttype | (cmd->request << 8); -	wValue	      = cpu_to_le16 (cmd->value); -	wIndex	      = cpu_to_le16 (cmd->index); -	wLength	      = cpu_to_le16 (cmd->length); +	wValue	      = le16_to_cpu (cmd->value); +	wIndex	      = le16_to_cpu (cmd->index); +	wLength	      = le16_to_cpu (cmd->length);  	info("Root-Hub: adr: %2x cmd(%1x): %08x %04x %04x %04x",  		dev->devnum, 8, bmRType_bReq, wValue, wIndex, wLength); |