mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
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).
This commit is contained in:
parent
2c8d41969b
commit
6324e5bec8
@ -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);
|
bmRType_bReq = cmd->requesttype | (cmd->request << 8);
|
||||||
wValue = cpu_to_le16 (cmd->value);
|
wValue = le16_to_cpu (cmd->value);
|
||||||
wIndex = cpu_to_le16 (cmd->index);
|
wIndex = le16_to_cpu (cmd->index);
|
||||||
wLength = cpu_to_le16 (cmd->length);
|
wLength = le16_to_cpu (cmd->length);
|
||||||
|
|
||||||
info("Root-Hub: adr: %2x cmd(%1x): %08x %04x %04x %04x",
|
info("Root-Hub: adr: %2x cmd(%1x): %08x %04x %04x %04x",
|
||||||
dev->devnum, 8, bmRType_bReq, wValue, wIndex, wLength);
|
dev->devnum, 8, bmRType_bReq, wValue, wIndex, wLength);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user