Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/mt76.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mt76x0
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2020-07-24 17:11:52 +0300
committerFelix Fietkau <nbd@nbd.name>2020-08-22 16:56:57 +0300
commit2f1318a06d0a9703f0085522361a4bc66f61d808 (patch)
tree1167df374e65ed35d26e55c59489ea23df28b598 /mt76x0
parent87a69429069fb80bd78a31db1f9436cef462fbd3 (diff)
mt76: convert from tx tasklet to tx worker thread
This should improve performance by allowing the scheduler to move the tx scheduling work to idle CPUs Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'mt76x0')
-rw-r--r--mt76x0/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mt76x0/pci.c b/mt76x0/pci.c
index 5e567483..dda11c70 100644
--- a/mt76x0/pci.c
+++ b/mt76x0/pci.c
@@ -204,7 +204,7 @@ static void mt76x0e_cleanup(struct mt76x02_dev *dev)
tasklet_disable(&dev->mt76.pre_tbtt_tasklet);
mt76x0_chip_onoff(dev, false, false);
mt76x0e_stop_hw(dev);
- mt76x02_dma_cleanup(dev);
+ mt76_dma_cleanup(&dev->mt76);
mt76x02_mcu_cleanup(dev);
}