libertas: move cardspecific data to driver
boot2_version is purely USB specific, so move it to struct if_usb_card. Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
David S. Miller
parent
ae3e0fcf90
commit
4365929d17
@@ -102,7 +102,6 @@ struct lbs_private {
|
|||||||
int mesh_open;
|
int mesh_open;
|
||||||
int infra_open;
|
int infra_open;
|
||||||
int mesh_autostart_enabled;
|
int mesh_autostart_enabled;
|
||||||
__le16 boot2_version;
|
|
||||||
|
|
||||||
char name[DEV_NAME_LEN];
|
char name[DEV_NAME_LEN];
|
||||||
|
|
||||||
|
@@ -104,12 +104,13 @@ static void if_usb_free(struct if_usb_card *cardp)
|
|||||||
|
|
||||||
static void if_usb_setup_firmware(struct lbs_private *priv)
|
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_set_boot2_ver b2_cmd;
|
||||||
struct cmd_ds_802_11_fw_wake_method wake_method;
|
struct cmd_ds_802_11_fw_wake_method wake_method;
|
||||||
|
|
||||||
b2_cmd.hdr.size = cpu_to_le16(sizeof(b2_cmd));
|
b2_cmd.hdr.size = cpu_to_le16(sizeof(b2_cmd));
|
||||||
b2_cmd.action = 0;
|
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))
|
if (lbs_cmd_with_response(priv, CMD_SET_BOOT2_VER, &b2_cmd))
|
||||||
lbs_deb_usb("Setting boot2 version failed\n");
|
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_host_to_card = if_usb_host_to_card;
|
||||||
priv->hw_get_int_status = if_usb_get_int_status;
|
priv->hw_get_int_status = if_usb_get_int_status;
|
||||||
priv->hw_read_event_cause = if_usb_read_event_cause;
|
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);
|
if_usb_submit_rx_urb(cardp);
|
||||||
|
|
||||||
|
@@ -70,6 +70,7 @@ struct if_usb_card {
|
|||||||
uint8_t fwfinalblk;
|
uint8_t fwfinalblk;
|
||||||
uint8_t surprise_removed;
|
uint8_t surprise_removed;
|
||||||
|
|
||||||
|
__le16 boot2_version;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** fwheader */
|
/** fwheader */
|
||||||
|
Reference in New Issue
Block a user