Commit 4ca77860 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville

ath9k: convert to new station add/remove callbacks

This converts ath9k to use the new station
add/remove callbacks instead of using the
old sta_notify callback.
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 1d669cbf
...@@ -1684,24 +1684,28 @@ static void ath9k_configure_filter(struct ieee80211_hw *hw, ...@@ -1684,24 +1684,28 @@ static void ath9k_configure_filter(struct ieee80211_hw *hw,
"Set HW RX filter: 0x%x\n", rfilt); "Set HW RX filter: 0x%x\n", rfilt);
} }
static void ath9k_sta_notify(struct ieee80211_hw *hw, static int ath9k_sta_add(struct ieee80211_hw *hw,
struct ieee80211_vif *vif, struct ieee80211_vif *vif,
enum sta_notify_cmd cmd, struct ieee80211_sta *sta)
struct ieee80211_sta *sta)
{ {
struct ath_wiphy *aphy = hw->priv; struct ath_wiphy *aphy = hw->priv;
struct ath_softc *sc = aphy->sc; struct ath_softc *sc = aphy->sc;
switch (cmd) { ath_node_attach(sc, sta);
case STA_NOTIFY_ADD:
ath_node_attach(sc, sta); return 0;
break; }
case STA_NOTIFY_REMOVE:
ath_node_detach(sc, sta); static int ath9k_sta_remove(struct ieee80211_hw *hw,
break; struct ieee80211_vif *vif,
default: struct ieee80211_sta *sta)
break; {
} struct ath_wiphy *aphy = hw->priv;
struct ath_softc *sc = aphy->sc;
ath_node_detach(sc, sta);
return 0;
} }
static int ath9k_conf_tx(struct ieee80211_hw *hw, u16 queue, static int ath9k_conf_tx(struct ieee80211_hw *hw, u16 queue,
...@@ -2045,7 +2049,8 @@ struct ieee80211_ops ath9k_ops = { ...@@ -2045,7 +2049,8 @@ struct ieee80211_ops ath9k_ops = {
.remove_interface = ath9k_remove_interface, .remove_interface = ath9k_remove_interface,
.config = ath9k_config, .config = ath9k_config,
.configure_filter = ath9k_configure_filter, .configure_filter = ath9k_configure_filter,
.sta_notify = ath9k_sta_notify, .sta_add = ath9k_sta_add,
.sta_remove = ath9k_sta_remove,
.conf_tx = ath9k_conf_tx, .conf_tx = ath9k_conf_tx,
.bss_info_changed = ath9k_bss_info_changed, .bss_info_changed = ath9k_bss_info_changed,
.set_key = ath9k_set_key, .set_key = ath9k_set_key,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment