]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mt76x0: remove unused mt76x0_tx_status routine
authorLorenzo Bianconi <lorenzo.bianconi@redhat.com>
Thu, 6 Sep 2018 09:18:37 +0000 (11:18 +0200)
committerFelix Fietkau <nbd@nbd.name>
Wed, 19 Sep 2018 10:29:50 +0000 (12:29 +0200)
Remove no longer used mt76x0_tx_status routine since
mt76x0 driver uses mt76-usb utility routines to report tx-feedbacks

Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0.h
drivers/net/wireless/mediatek/mt76/mt76x0/tx.c

index 6ba5e9ba2c7fda8a9671b47cb7fe3d91dc38a858..24712ac924efbe66a72f7224f0e0325cf28a4568 100644 (file)
@@ -185,7 +185,6 @@ void mt76x0_mac_set_ampdu_factor(struct mt76x0_dev *dev);
 /* TX */
 void mt76x0_tx(struct ieee80211_hw *hw, struct ieee80211_tx_control *control,
                struct sk_buff *skb);
-void mt76x0_tx_status(struct mt76x0_dev *dev, struct sk_buff *skb);
 
 void mt76x0_queue_rx_skb(struct mt76_dev *mdev, enum mt76_rxq_id q,
                         struct sk_buff *skb);
index c0ecb57fc9e6c3ffa33b4309142f70ef5e9f95f7..4058dae1368fe9fba35663680c5735d83142017d 100644 (file)
 #include "trace.h"
 #include "../mt76x02_util.h"
 
-void mt76x0_tx_status(struct mt76x0_dev *dev, struct sk_buff *skb)
-{
-       struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
-
-       mt76x02_remove_dma_hdr(skb);
-
-       ieee80211_tx_info_clear_status(info);
-       info->status.rates[0].idx = -1;
-       info->flags |= IEEE80211_TX_STAT_ACK;
-
-       spin_lock(&dev->mac_lock);
-       ieee80211_tx_status(dev->mt76.hw, skb);
-       spin_unlock(&dev->mac_lock);
-}
-
 static struct mt76x02_txwi *
 mt76x0_push_txwi(struct mt76x0_dev *dev, struct sk_buff *skb,
                  struct ieee80211_sta *sta, struct mt76_wcid *wcid,