mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-22 20:43:56 +08:00
staging: octeon-usb: fix endianness bug
wHubCharacteristics gets wrong value on big-endian CPUs. Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8dcf4ecea9
commit
e5873388e2
@ -3628,7 +3628,7 @@ static int octeon_usb_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
|
||||
desc->bDescLength = 9;
|
||||
desc->bDescriptorType = 0x29;
|
||||
desc->bNbrPorts = 1;
|
||||
desc->wHubCharacteristics = 0x08;
|
||||
desc->wHubCharacteristics = cpu_to_le16(0x08);
|
||||
desc->bPwrOn2PwrGood = 1;
|
||||
desc->bHubContrCurrent = 0;
|
||||
desc->u.hs.DeviceRemovable[0] = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user