iwlegacy: get rid of ap_sta_id
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
d98e294231
commit
8f9e564553
4 changed files with 3 additions and 5 deletions
|
@ -3619,7 +3619,6 @@ il3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||||
|
|
||||||
il->ctx.ctxid = 0;
|
il->ctx.ctxid = 0;
|
||||||
|
|
||||||
il->ctx.ap_sta_id = IL_AP_ID;
|
|
||||||
il->ctx.interface_modes =
|
il->ctx.interface_modes =
|
||||||
BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_ADHOC);
|
BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_ADHOC);
|
||||||
il->ctx.ibss_devtype = RXON_DEV_TYPE_IBSS;
|
il->ctx.ibss_devtype = RXON_DEV_TYPE_IBSS;
|
||||||
|
|
|
@ -2906,7 +2906,7 @@ il4965_set_default_wep_key(struct il_priv *il, struct il_rxon_context *ctx,
|
||||||
|
|
||||||
keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
|
keyconf->flags &= ~IEEE80211_KEY_FLAG_GENERATE_IV;
|
||||||
keyconf->hw_key_idx = HW_KEY_DEFAULT;
|
keyconf->hw_key_idx = HW_KEY_DEFAULT;
|
||||||
il->stations[ctx->ap_sta_id].keyinfo.cipher = keyconf->cipher;
|
il->stations[IL_AP_ID].keyinfo.cipher = keyconf->cipher;
|
||||||
|
|
||||||
ctx->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
|
ctx->wep_keys[keyconf->keyidx].key_size = keyconf->keylen;
|
||||||
memcpy(&ctx->wep_keys[keyconf->keyidx].key, &keyconf->key,
|
memcpy(&ctx->wep_keys[keyconf->keyidx].key, &keyconf->key,
|
||||||
|
@ -6135,7 +6135,6 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||||
|
|
||||||
il->ctx.always_active = true;
|
il->ctx.always_active = true;
|
||||||
il->ctx.is_active = true;
|
il->ctx.is_active = true;
|
||||||
il->ctx.ap_sta_id = IL_AP_ID;
|
|
||||||
il->ctx.ac_to_fifo = il4965_bss_ac_to_fifo;
|
il->ctx.ac_to_fifo = il4965_bss_ac_to_fifo;
|
||||||
il->ctx.ac_to_queue = il4965_bss_ac_to_queue;
|
il->ctx.ac_to_queue = il4965_bss_ac_to_queue;
|
||||||
il->ctx.exclusive_interface_modes = BIT(NL80211_IFTYPE_ADHOC);
|
il->ctx.exclusive_interface_modes = BIT(NL80211_IFTYPE_ADHOC);
|
||||||
|
|
|
@ -1899,7 +1899,7 @@ il_prep_station(struct il_priv *il, struct il_rxon_context *ctx,
|
||||||
u16 rate;
|
u16 rate;
|
||||||
|
|
||||||
if (is_ap)
|
if (is_ap)
|
||||||
sta_id = ctx->ap_sta_id;
|
sta_id = IL_AP_ID;
|
||||||
else if (is_broadcast_ether_addr(addr))
|
else if (is_broadcast_ether_addr(addr))
|
||||||
sta_id = ctx->bcast_sta_id;
|
sta_id = ctx->bcast_sta_id;
|
||||||
else
|
else
|
||||||
|
|
|
@ -1173,7 +1173,7 @@ struct il_rxon_context {
|
||||||
|
|
||||||
struct il_qos_info qos_data;
|
struct il_qos_info qos_data;
|
||||||
|
|
||||||
u8 bcast_sta_id, ap_sta_id;
|
u8 bcast_sta_id;
|
||||||
|
|
||||||
struct il_wep_key wep_keys[WEP_KEYS_MAX];
|
struct il_wep_key wep_keys[WEP_KEYS_MAX];
|
||||||
u8 key_mapping_keys;
|
u8 key_mapping_keys;
|
||||||
|
|
Loading…
Add table
Reference in a new issue