aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath5k/ath5k.h
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2009-09-10 13:51:33 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-10-07 16:39:26 -0400
commit954fecea5d1df4d1dc7bf9a822a2fad308e8588e (patch)
tree73f5cbc16292f0a85f3672af701e83bba74dbb77 /drivers/net/wireless/ath/ath5k/ath5k.h
parent8c727e70860dab0cf34a68591cd3f2043a9b9757 (diff)
ath5k: use common curbssid, bssidmask and macaddr
The ah_sta_id was really being used as the macaddr. ath5k still does not use the association ID now passed up by mac80211, that can be fixed later. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/ath5k.h')
-rw-r--r--drivers/net/wireless/ath/ath5k/ath5k.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/net/wireless/ath/ath5k/ath5k.h b/drivers/net/wireless/ath/ath5k/ath5k.h
index 93a9c1f93f69..f46a92e78b32 100644
--- a/drivers/net/wireless/ath/ath5k/ath5k.h
+++ b/drivers/net/wireless/ath/ath5k/ath5k.h
@@ -1060,14 +1060,6 @@ struct ath5k_hw {
1060 u8 ah_def_ant; 1060 u8 ah_def_ant;
1061 bool ah_software_retry; 1061 bool ah_software_retry;
1062 1062
1063 u8 ah_sta_id[ETH_ALEN];
1064
1065 /* Current BSSID we are trying to assoc to / create.
1066 * This is passed by mac80211 on config_interface() and cached here for
1067 * use in resets */
1068 u8 ah_bssid[ETH_ALEN];
1069 u8 ah_bssid_mask[ETH_ALEN];
1070
1071 int ah_gpio_npins; 1063 int ah_gpio_npins;
1072 1064
1073 struct ath5k_capabilities ah_capabilities; 1065 struct ath5k_capabilities ah_capabilities;
@@ -1196,7 +1188,6 @@ extern bool ath5k_eeprom_is_hb63(struct ath5k_hw *ah);
1196/* Protocol Control Unit Functions */ 1188/* Protocol Control Unit Functions */
1197extern int ath5k_hw_set_opmode(struct ath5k_hw *ah); 1189extern int ath5k_hw_set_opmode(struct ath5k_hw *ah);
1198/* BSSID Functions */ 1190/* BSSID Functions */
1199extern void ath5k_hw_get_lladdr(struct ath5k_hw *ah, u8 *mac);
1200extern int ath5k_hw_set_lladdr(struct ath5k_hw *ah, const u8 *mac); 1191extern int ath5k_hw_set_lladdr(struct ath5k_hw *ah, const u8 *mac);
1201extern void ath5k_hw_set_associd(struct ath5k_hw *ah, const u8 *bssid, u16 assoc_id); 1192extern void ath5k_hw_set_associd(struct ath5k_hw *ah, const u8 *bssid, u16 assoc_id);
1202extern int ath5k_hw_set_bssid_mask(struct ath5k_hw *ah, const u8 *mask); 1193extern int ath5k_hw_set_bssid_mask(struct ath5k_hw *ah, const u8 *mask);