Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 83eacf23 authored by David Woodhouse's avatar David Woodhouse Committed by David S. Miller
Browse files

libertas: Fix endianness in boot2_version handling.



We read it from the card. We byte-swap it. We write it back to the card.
D'oh.

Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent f9f6890e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ static int if_usb_probe(struct usb_interface *intf,
	priv->hw_host_to_card = if_usb_host_to_card;
	priv->hw_get_int_status = if_usb_get_int_status;
	priv->hw_read_event_cause = if_usb_read_event_cause;
	priv->boot2_version = udev->descriptor.bcdDevice;
	priv->boot2_version = le16_to_cpu(udev->descriptor.bcdDevice);

	/* Delay 200 ms to waiting for the FW ready */
	if_usb_submit_rx_urb(cardp);