mt76: unify set_tim
authorStanislaw Gruszka <sgruszka@redhat.com>
Tue, 19 Mar 2019 10:37:46 +0000 (11:37 +0100)
committerFelix Fietkau <nbd@nbd.name>
Wed, 1 May 2019 11:03:56 +0000 (13:03 +0200)
All mt76 drivers (now also USB drivers) require empty .set_tim
callback. Add it to common mt76 module and use on all drivers.

Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mac80211.c
drivers/net/wireless/mediatek/mt76/mt76.h
drivers/net/wireless/mediatek/mt76/mt7603/main.c
drivers/net/wireless/mediatek/mt76/mt76x0/pci.c
drivers/net/wireless/mediatek/mt76/mt76x0/usb.c
drivers/net/wireless/mediatek/mt76/mt76x2/pci_main.c
drivers/net/wireless/mediatek/mt76/mt76x2/usb_main.c

index 1beb7fbc04381dc52fc515534f75b60ad1f19a82..15825e9a458fc94ccd461536cb60f0f24b852f3b 100644 (file)
@@ -789,3 +789,10 @@ void mt76_csa_check(struct mt76_dev *dev)
                __mt76_csa_check, dev);
 }
 EXPORT_SYMBOL_GPL(mt76_csa_check);
+
+int
+mt76_set_tim(struct ieee80211_hw *hw, struct ieee80211_sta *sta, bool set)
+{
+       return 0;
+}
+EXPORT_SYMBOL_GPL(mt76_set_tim);
index b6279dd1ed8921e7196e8a4d26a866a1c97c8167..069d687eb3c4e2f2c925993deb7f08ea4be14c78 100644 (file)
@@ -734,6 +734,8 @@ int mt76_get_txpower(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
 void mt76_csa_check(struct mt76_dev *dev);
 void mt76_csa_finish(struct mt76_dev *dev);
 
+int mt76_set_tim(struct ieee80211_hw *hw, struct ieee80211_sta *sta, bool set);
+
 /* internal */
 void mt76_tx_free(struct mt76_dev *dev);
 struct mt76_txwi_cache *mt76_get_txwi(struct mt76_dev *dev);
index 917acf5f0981fa06f4d73d205db70ecc8bf12046..44745db0f4a9a11224d94aa802f417e450834ef7 100644 (file)
@@ -664,12 +664,6 @@ static void mt7603_tx(struct ieee80211_hw *hw, struct ieee80211_tx_control *cont
        mt76_tx(&dev->mt76, control->sta, wcid, skb);
 }
 
-static int
-mt7603_set_tim(struct ieee80211_hw *hw, struct ieee80211_sta *sta, bool set)
-{
-       return 0;
-}
-
 const struct ieee80211_ops mt7603_ops = {
        .tx = mt7603_tx,
        .start = mt7603_start,
@@ -691,7 +685,7 @@ const struct ieee80211_ops mt7603_ops = {
        .sta_rate_tbl_update = mt7603_sta_rate_tbl_update,
        .release_buffered_frames = mt7603_release_buffered_frames,
        .set_coverage_class = mt7603_set_coverage_class,
-       .set_tim = mt7603_set_tim,
+       .set_tim = mt76_set_tim,
        .get_survey = mt76_get_survey,
 };
 
index e35165416cf0875816077f3d25965422b3a75e14..a7ff7e32b9b33379462626c61eaaa729f7094e43 100644 (file)
@@ -74,13 +74,6 @@ mt76x0e_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
 {
 }
 
-static int
-mt76x0e_set_tim(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
-               bool set)
-{
-       return 0;
-}
-
 static const struct ieee80211_ops mt76x0e_ops = {
        .tx = mt76x02_tx,
        .start = mt76x0e_start,
@@ -101,7 +94,7 @@ static const struct ieee80211_ops mt76x0e_ops = {
        .get_survey = mt76_get_survey,
        .get_txpower = mt76_get_txpower,
        .flush = mt76x0e_flush,
-       .set_tim = mt76x0e_set_tim,
+       .set_tim = mt76_set_tim,
        .release_buffered_frames = mt76_release_buffered_frames,
        .set_coverage_class = mt76x02_set_coverage_class,
        .set_rts_threshold = mt76x02_set_rts_threshold,
index 37f6baa94400c66dab2a89372299485444994360..69d6328a098d43a0144df157f3428aa4d8bf0f3f 100644 (file)
@@ -152,6 +152,7 @@ static const struct ieee80211_ops mt76x0u_ops = {
        .set_rts_threshold = mt76x02_set_rts_threshold,
        .wake_tx_queue = mt76_wake_tx_queue,
        .get_txpower = mt76_get_txpower,
+       .set_tim = mt76_set_tim,
        .release_buffered_frames = mt76_release_buffered_frames,
 };
 
index 878ce92405ed854cf251642fd092c5fd0c066c49..16dc8e2451b5e0a163ac56ffcd56fe754f02f285 100644 (file)
@@ -135,12 +135,6 @@ mt76x2_flush(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
 {
 }
 
-static int
-mt76x2_set_tim(struct ieee80211_hw *hw, struct ieee80211_sta *sta, bool set)
-{
-       return 0;
-}
-
 static int mt76x2_set_antenna(struct ieee80211_hw *hw, u32 tx_ant,
                              u32 rx_ant)
 {
@@ -197,7 +191,7 @@ const struct ieee80211_ops mt76x2_ops = {
        .release_buffered_frames = mt76_release_buffered_frames,
        .set_coverage_class = mt76x02_set_coverage_class,
        .get_survey = mt76_get_survey,
-       .set_tim = mt76x2_set_tim,
+       .set_tim = mt76_set_tim,
        .set_antenna = mt76x2_set_antenna,
        .get_antenna = mt76x2_get_antenna,
        .set_rts_threshold = mt76x02_set_rts_threshold,
index 46c6b3764f5aa256238c1b9a5b95c9c3712ba1af..eb414fb75fb160957ee0335f54c31189be15cf0d 100644 (file)
@@ -129,5 +129,6 @@ const struct ieee80211_ops mt76x2u_ops = {
        .sw_scan_complete = mt76x02_sw_scan_complete,
        .sta_rate_tbl_update = mt76x02_sta_rate_tbl_update,
        .get_txpower = mt76_get_txpower,
+       .set_tim = mt76_set_tim,
        .release_buffered_frames = mt76_release_buffered_frames,
 };