Commit 310718ba authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau
Browse files

mt76: connac: do not run mt76_txq_schedule_all directly



In order to not break runtime-pm, do run mt76_txq_schedule_all in
mt7615_set_channel/mt7921_set_channel but rely on mt76_worker_schedule

Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 75e83c20
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -351,8 +351,7 @@ int mt7615_set_channel(struct mt7615_phy *phy)

	mt7615_mutex_release(dev);

	mt76_txq_schedule_all(phy->mt76);

	mt76_worker_schedule(&dev->mt76.tx_worker);
	if (!mt76_testmode_enabled(phy->mt76))
		ieee80211_queue_delayed_work(phy->mt76->hw,
					     &phy->mt76->mac_work,
+1 −2
Original line number Diff line number Diff line
@@ -395,8 +395,7 @@ int mt7921_set_channel(struct mt7921_phy *phy)
	clear_bit(MT76_RESET, &phy->mt76->state);
	mt7921_mutex_release(dev);

	mt76_txq_schedule_all(phy->mt76);

	mt76_worker_schedule(&dev->mt76.tx_worker);
	ieee80211_queue_delayed_work(phy->mt76->hw, &phy->mt76->mac_work,
				     MT7921_WATCHDOG_TIME);