mirror of https://gitee.com/openkylin/linux.git
mt76: mt7921: improve doze opportunity
Increase mt7921 mac work timeout in oder to have move sleep opportunities Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
d43b325762
commit
c18ba14c4b
|
@ -1373,12 +1373,12 @@ void mt7921_mac_work(struct work_struct *work)
|
|||
mt7921_mutex_acquire(phy->dev);
|
||||
|
||||
mt76_update_survey(mphy->dev);
|
||||
if (++mphy->mac_work_count == 5) {
|
||||
if (++mphy->mac_work_count == 2) {
|
||||
mphy->mac_work_count = 0;
|
||||
|
||||
mt7921_mac_update_mib_stats(phy);
|
||||
}
|
||||
if (++phy->sta_work_count == 10) {
|
||||
if (++phy->sta_work_count == 4) {
|
||||
phy->sta_work_count = 0;
|
||||
mt7921_mac_sta_stats_work(phy);
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#define MT7921_PM_TIMEOUT (HZ / 12)
|
||||
#define MT7921_HW_SCAN_TIMEOUT (HZ / 10)
|
||||
#define MT7921_WATCHDOG_TIME (HZ / 10)
|
||||
#define MT7921_WATCHDOG_TIME (HZ / 4)
|
||||
#define MT7921_RESET_TIMEOUT (30 * HZ)
|
||||
|
||||
#define MT7921_TX_RING_SIZE 2048
|
||||
|
|
Loading…
Reference in New Issue