summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Eggers <ceggers@gmx.de>2008-05-21 21:29:10 +0200
committerMarkus Klotzbuecher <mk@denx.de>2008-05-22 17:56:46 +0200
commit6324e5bec8825f7fee3026ffbd394454ae8b53fb (patch)
treebfbbd3e4a12b4c44bf702092f620b2f229fe7f92
parent2c8d41969b47eb0b973912830c58689b2ba0e50a (diff)
downloadu-boot-6324e5bec8825f7fee3026ffbd394454ae8b53fb.tar.gz
u-boot-6324e5bec8825f7fee3026ffbd394454ae8b53fb.tar.xz
u-boot-6324e5bec8825f7fee3026ffbd394454ae8b53fb.zip
Fix endianess conversion in usb_ohci.c
Sorry, I forgot this line: Signed-off-by: Christian Eggers <ceggers@gmx.de> I think this must be swapped (result may be equal).
-rw-r--r--drivers/usb/usb_ohci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/usb_ohci.c b/drivers/usb/usb_ohci.c
index ee0f2e45b1..29fcbbef0f 100644
--- a/drivers/usb/usb_ohci.c
+++ b/drivers/usb/usb_ohci.c
@@ -1218,9 +1218,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);