mt76: unify remove_interface
authorStanislaw Gruszka <sgruszka@redhat.com>
Tue, 4 Sep 2018 14:41:05 +0000 (16:41 +0200)
committerFelix Fietkau <nbd@nbd.name>
Wed, 19 Sep 2018 10:29:13 +0000 (12:29 +0200)
Use common remove_interface callback in mt76x0 and mt76x2.

Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt76x0/main.c
drivers/net/wireless/mediatek/mt76/mt76x02_util.c
drivers/net/wireless/mediatek/mt76/mt76x02_util.h
drivers/net/wireless/mediatek/mt76/mt76x2_common.c
drivers/net/wireless/mediatek/mt76/mt76x2_main.c
drivers/net/wireless/mediatek/mt76/mt76x2u_main.c

index a818a47f8e4ee11fcb4a7f8c5f0564f17872840f..d8efa009126c8dff698ad48d861e52f9cccd3317 100644 (file)
@@ -62,14 +62,6 @@ static int mt76x0_add_interface(struct ieee80211_hw *hw,
        return 0;
 }
 
-static void mt76x0_remove_interface(struct ieee80211_hw *hw,
-                                    struct ieee80211_vif *vif)
-{
-       struct mt76x0_dev *dev = hw->priv;
-
-       mt76_txq_remove(&dev->mt76, vif->txq);
-}
-
 static int mt76x0_config(struct ieee80211_hw *hw, u32 changed)
 {
        struct mt76x0_dev *dev = hw->priv;
@@ -203,7 +195,7 @@ const struct ieee80211_ops mt76x0_ops = {
        .start = mt76x0_start,
        .stop = mt76x0_stop,
        .add_interface = mt76x0_add_interface,
-       .remove_interface = mt76x0_remove_interface,
+       .remove_interface = mt76x02_remove_interface,
        .config = mt76x0_config,
        .configure_filter = mt76x02_configure_filter,
        .bss_info_changed = mt76x0_bss_info_changed,
index 140e43817a3904f1a5a4cd9f617fc88c3e1da725..3b68102e55aeaf25d16fb4e13c20c324c369b0ec 100644 (file)
@@ -127,6 +127,15 @@ void mt76x02_vif_init(struct mt76_dev *dev, struct ieee80211_vif *vif,
 }
 EXPORT_SYMBOL_GPL(mt76x02_vif_init);
 
+void mt76x02_remove_interface(struct ieee80211_hw *hw,
+                            struct ieee80211_vif *vif)
+{
+       struct mt76_dev *dev = hw->priv;
+
+       mt76_txq_remove(dev, vif->txq);
+}
+EXPORT_SYMBOL_GPL(mt76x02_remove_interface);
+
 int mt76x02_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
                        struct ieee80211_ampdu_params *params)
 {
index 54f895d8cdbe022bafdab2c69c04669460a3cb36..a61c9f2b9a620dce1b992c5b73326f1423c2a6d3 100644 (file)
@@ -28,6 +28,8 @@ int mt76x02_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
 
 void mt76x02_vif_init(struct mt76_dev *dev, struct ieee80211_vif *vif,
                     unsigned int idx);
+void mt76x02_remove_interface(struct ieee80211_hw *hw,
+                            struct ieee80211_vif *vif);
 
 int mt76x02_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
                        struct ieee80211_ampdu_params *params);
index 5ce9fbc654a26843ed02deeb9f0fa9a900386db4..be4e00fe7586fdf8db82fd04b81cd5916463b170 100644 (file)
 #include "mt76x2.h"
 #include "mt76x02_mac.h"
 
-void mt76x2_remove_interface(struct ieee80211_hw *hw,
-                            struct ieee80211_vif *vif)
-{
-       struct mt76x2_dev *dev = hw->priv;
-
-       mt76_txq_remove(&dev->mt76, vif->txq);
-}
-EXPORT_SYMBOL_GPL(mt76x2_remove_interface);
-
 void mt76x2_sta_rate_tbl_update(struct ieee80211_hw *hw,
                                struct ieee80211_vif *vif,
                                struct ieee80211_sta *sta)
index 87302845d582776309dc89a10df338d99130358e..128a1c1c0f64b5e4d3375cbdf6a4ba37871968ea 100644 (file)
@@ -314,7 +314,7 @@ const struct ieee80211_ops mt76x2_ops = {
        .start = mt76x2_start,
        .stop = mt76x2_stop,
        .add_interface = mt76x2_add_interface,
-       .remove_interface = mt76x2_remove_interface,
+       .remove_interface = mt76x02_remove_interface,
        .config = mt76x2_config,
        .configure_filter = mt76x02_configure_filter,
        .bss_info_changed = mt76x2_bss_info_changed,
index 1dcc6ced15a56fde3393a4f9816875667ade6adc..66a923a32e510e01c104e3690e29ea5ee5fe2201 100644 (file)
@@ -164,7 +164,7 @@ const struct ieee80211_ops mt76x2u_ops = {
        .start = mt76x2u_start,
        .stop = mt76x2u_stop,
        .add_interface = mt76x2u_add_interface,
-       .remove_interface = mt76x2_remove_interface,
+       .remove_interface = mt76x02_remove_interface,
        .sta_add = mt76x02_sta_add,
        .sta_remove = mt76x02_sta_remove,
        .set_key = mt76x02_set_key,