From: Christian Eggers Date: Wed, 21 May 2008 19:29:10 +0000 (+0200) Subject: Fix endianess conversion in usb_ohci.c X-Git-Tag: v1.3.4~12^2~11^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6324e5bec8825f7fee3026ffbd394454ae8b53fb;p=kernel%2Fu-boot.git Fix endianess conversion in usb_ohci.c Sorry, I forgot this line: Signed-off-by: Christian Eggers I think this must be swapped (result may be equal). --- diff --git a/drivers/usb/usb_ohci.c b/drivers/usb/usb_ohci.c index ee0f2e4..29fcbbe 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);