Skip to content

Commit

Permalink
iwlegacy: get rid of ap_sta_id
Browse files Browse the repository at this point in the history
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Stanislaw Gruszka authored and John W. Linville committed Feb 6, 2012
1 parent d98e294 commit 8f9e564
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion drivers/net/wireless/iwlegacy/3945-mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -3619,7 +3619,6 @@ il3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)

il->ctx.ctxid = 0;

il->ctx.ap_sta_id = IL_AP_ID;
il->ctx.interface_modes =
BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_ADHOC);
il->ctx.ibss_devtype = RXON_DEV_TYPE_IBSS;
Expand Down
3 changes: 1 addition & 2 deletions drivers/net/wireless/iwlegacy/4965-mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -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->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;
memcpy(&ctx->wep_keys[keyconf->keyidx].key, &keyconf->key,
Expand Down Expand Up @@ -6135,7 +6135,6 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)

il->ctx.always_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_queue = il4965_bss_ac_to_queue;
il->ctx.exclusive_interface_modes = BIT(NL80211_IFTYPE_ADHOC);
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/iwlegacy/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -1899,7 +1899,7 @@ il_prep_station(struct il_priv *il, struct il_rxon_context *ctx,
u16 rate;

if (is_ap)
sta_id = ctx->ap_sta_id;
sta_id = IL_AP_ID;
else if (is_broadcast_ether_addr(addr))
sta_id = ctx->bcast_sta_id;
else
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/wireless/iwlegacy/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,7 @@ struct il_rxon_context {

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];
u8 key_mapping_keys;
Expand Down

0 comments on commit 8f9e564

Please sign in to comment.