Message ID | aec7c9b0d76fda57703eaa11d35542060dfff60c.1617471501.git.lorenzo@kernel.org |
---|---|
State | New |
Headers | show |
Series | mt76: mt7615: always wake the device in mt7615_remove_interface | expand |
diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/main.c b/drivers/net/wireless/mediatek/mt76/mt7615/main.c index 740c9a45e21b..57567e35f71d 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7615/main.c +++ b/drivers/net/wireless/mediatek/mt76/mt7615/main.c @@ -257,11 +257,11 @@ static void mt7615_remove_interface(struct ieee80211_hw *hw, struct mt7615_phy *phy = mt7615_hw_phy(hw); int idx = msta->wcid.idx; + mt7615_mutex_acquire(dev); + mt7615_mcu_add_bss_info(phy, vif, NULL, false); mt7615_mcu_sta_add(phy, vif, NULL, false); - mt7615_mutex_acquire(dev); - mt76_testmode_reset(phy->mt76, true); if (vif == phy->monitor_vif) phy->monitor_vif = NULL;
Similar to mt7921 driver, make sure the mcu is not in sleep mode before sending mcu messages in mt7615_remove_interface routine. Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> --- drivers/net/wireless/mediatek/mt76/mt7615/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)