[U-Boot-Users] [PATCH] 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). --- 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 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, trans }
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);

"Christian Eggers" ceggers@gmx.de writes:
Sorry, I forgot this line:
Signed-off-by: Christian Eggers ceggers@gmx.de
I think this must be swapped (result may be equal).
Thanks, applied.
Best regards
Markus Klotzbuecher
-- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 Email: office@denx.de
participants (2)
-
Christian Eggers
-
Markus Klotzbücher