projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
477434c
)
Fix endianess conversion in usb_ohci.c
author
Christian Eggers
<ceggers@gmx.de>
Wed, 21 May 2008 19:29:10 +0000
(21:29 +0200)
committer
Markus Klotzbuecher
<mk@denx.de>
Thu, 22 May 2008 15:14:17 +0000
(17:14 +0200)
Signed-off-by: Christian Eggers <ceggers@gmx.de>
Signed-off-by: Markus Klotzbuecher <mk@denx.de>
drivers/usb/usb_ohci.c
patch
|
blob
|
history
diff --git
a/drivers/usb/usb_ohci.c
b/drivers/usb/usb_ohci.c
index 318478afa48157be90dad84dfffbe72394c3495d..fd60edbb3d446f32cf6bbc3d18d23b15fcca701e 100644
(file)
--- 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);