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

Commit 4365929d authored by Holger Schurig's avatar Holger Schurig Committed by David S. Miller
Browse files

libertas: move cardspecific data to driver



boot2_version is purely USB specific, so move it to struct if_usb_card.

Signed-off-by: default avatarHolger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent ae3e0fcf
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -102,7 +102,6 @@ struct lbs_private {
	int mesh_open;
	int infra_open;
	int mesh_autostart_enabled;
	__le16 boot2_version;

	char name[DEV_NAME_LEN];

+3 −2
Original line number Diff line number Diff line
@@ -104,12 +104,13 @@ static void if_usb_free(struct if_usb_card *cardp)

static void if_usb_setup_firmware(struct lbs_private *priv)
{
	struct if_usb_card *cardp = priv->card;
	struct cmd_ds_set_boot2_ver b2_cmd;
	struct cmd_ds_802_11_fw_wake_method wake_method;

	b2_cmd.hdr.size = cpu_to_le16(sizeof(b2_cmd));
	b2_cmd.action = 0;
	b2_cmd.version = priv->boot2_version;
	b2_cmd.version = cardp->boot2_version;

	if (lbs_cmd_with_response(priv, CMD_SET_BOOT2_VER, &b2_cmd))
		lbs_deb_usb("Setting boot2 version failed\n");
@@ -234,7 +235,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;
	cardp->boot2_version = udev->descriptor.bcdDevice;

	if_usb_submit_rx_urb(cardp);

+1 −0
Original line number Diff line number Diff line
@@ -70,6 +70,7 @@ struct if_usb_card {
	uint8_t fwfinalblk;
	uint8_t surprise_removed;

	__le16 boot2_version;
};

/** fwheader */