]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
mt76: move mt76x2u_tx_status_data in mt76x02-lib module
authorLorenzo Bianconi <lorenzo.bianconi@redhat.com>
Thu, 6 Sep 2018 09:18:24 +0000 (11:18 +0200)
committerFelix Fietkau <nbd@nbd.name>
Wed, 19 Sep 2018 10:29:34 +0000 (12:29 +0200)
Move mt76x2u_tx_status_data routine in mt76x02-lib module and rename it
in mt76x02_tx_status_data in order to be reused in mt76x0 driver

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/mt76x02_util.c
drivers/net/wireless/mediatek/mt76/mt76x02_util.h
drivers/net/wireless/mediatek/mt76/mt76x2u.h
drivers/net/wireless/mediatek/mt76/mt76x2u_core.c
drivers/net/wireless/mediatek/mt76/mt76x2u_init.c

index 1b7168127d2a683962c2e328abe2eea1da69ab5b..e0d0d13152a74eea2b1289f1ca1a0c85e3e388ac 100644 (file)
@@ -433,4 +433,17 @@ int mt76x02_set_txinfo(struct sk_buff *skb, struct mt76_wcid *wcid, u8 ep)
 }
 EXPORT_SYMBOL_GPL(mt76x02_set_txinfo);
 
+bool mt76x02_tx_status_data(struct mt76_dev *dev, u8 *update)
+{
+       struct mt76x02_tx_status stat;
+
+       if (!mt76x02_mac_load_tx_status(dev, &stat))
+               return false;
+
+       mt76x02_send_tx_status(dev, &stat, update);
+
+       return true;
+}
+EXPORT_SYMBOL_GPL(mt76x02_tx_status_data);
+
 MODULE_LICENSE("Dual BSD/GPL");
index ad4112cc78003782813a793c0129e91c87c3d049..383031b9b6d8a88ac524584f1ed37d9c6e6dacd3 100644 (file)
@@ -50,4 +50,5 @@ void mt76x02_remove_dma_hdr(struct sk_buff *skb);
 void mt76x02_tx_complete_skb(struct mt76_dev *mdev, struct mt76_queue *q,
                            struct mt76_queue_entry *e, bool flush);
 int mt76x02_set_txinfo(struct sk_buff *skb, struct mt76_wcid *wcid, u8 ep);
+bool mt76x02_tx_status_data(struct mt76_dev *dev, u8 *update);
 #endif
index 180779bebaa2818f6a0b2294170b885c00ce11ec..5a11217c03eda09fde60d8377cc4e4dc0332cb77 100644 (file)
@@ -69,7 +69,6 @@ int mt76x2u_mcu_fw_init(struct mt76x2_dev *dev);
 int mt76x2u_alloc_queues(struct mt76x2_dev *dev);
 void mt76x2u_queues_deinit(struct mt76x2_dev *dev);
 void mt76x2u_stop_queues(struct mt76x2_dev *dev);
-bool mt76x2u_tx_status_data(struct mt76_dev *mdev, u8 *update);
 int mt76x2u_tx_prepare_skb(struct mt76_dev *mdev, void *data,
                           struct sk_buff *skb, struct mt76_queue *q,
                           struct mt76_wcid *wcid, struct ieee80211_sta *sta,
index f0b0eb4e7e8074b636a76a5d49720f8ccf849374..4433cc7b150da5fb77093fe448e48699bb596aec 100644 (file)
@@ -30,19 +30,6 @@ mt76x2u_check_skb_rooms(struct sk_buff *skb)
        return skb_cow(skb, need_head);
 }
 
-bool mt76x2u_tx_status_data(struct mt76_dev *mdev, u8 *update)
-{
-       struct mt76x2_dev *dev = container_of(mdev, struct mt76x2_dev, mt76);
-       struct mt76x02_tx_status stat;
-
-       if (!mt76x02_mac_load_tx_status(&dev->mt76, &stat))
-               return false;
-
-       mt76x02_send_tx_status(&dev->mt76, &stat, update);
-
-       return true;
-}
-
 int mt76x2u_tx_prepare_skb(struct mt76_dev *mdev, void *data,
                           struct sk_buff *skb, struct mt76_queue *q,
                           struct mt76_wcid *wcid, struct ieee80211_sta *sta,
index f166246da002aa46ff1cd84cb034d956f7525ecd..29f3ecaad9799be80d1fe63a637dd1d5a89281e3 100644 (file)
@@ -138,7 +138,7 @@ struct mt76x2_dev *mt76x2u_alloc_device(struct device *pdev)
        static const struct mt76_driver_ops drv_ops = {
                .tx_prepare_skb = mt76x2u_tx_prepare_skb,
                .tx_complete_skb = mt76x02_tx_complete_skb,
-               .tx_status_data = mt76x2u_tx_status_data,
+               .tx_status_data = mt76x02_tx_status_data,
                .rx_skb = mt76x2_queue_rx_skb,
        };
        struct mt76x2_dev *dev;