blob: 5d3a194b6664017c3cc605c98ba296d77d2bd770 [file] [log] [blame]
developerd0c89452024-10-11 16:53:27 +08001From b6003ba133a517cea454233c6b951ea8acaf7cc0 Mon Sep 17 00:00:00 2001
developer66e89bc2024-04-23 14:50:01 +08002From: Rex Lu <rex.lu@mediatek.com>
3Date: Wed, 29 Nov 2023 13:56:52 +0800
developerd0c89452024-10-11 16:53:27 +08004Subject: [PATCH 066/223] mtk: mt76: mt7996: Remove wed_stop during L1 SER
developer66e89bc2024-04-23 14:50:01 +08005
6Align logan L1 SER flow. During L1 SER, didn't need to close wed interrupt.
7
developer66e89bc2024-04-23 14:50:01 +08008Signed-off-by: Rex Lu <rex.lu@mediatek.com>
9---
10 mt7996/mac.c | 6 ------
11 1 file changed, 6 deletions(-)
12
13diff --git a/mt7996/mac.c b/mt7996/mac.c
developerd0c89452024-10-11 16:53:27 +080014index 9f94f530..c72f70db 100644
developer66e89bc2024-04-23 14:50:01 +080015--- a/mt7996/mac.c
16+++ b/mt7996/mac.c
developerd0c89452024-10-11 16:53:27 +080017@@ -1959,12 +1959,6 @@ void mt7996_mac_reset_work(struct work_struct *work)
developer66e89bc2024-04-23 14:50:01 +080018 dev_info(dev->mt76.dev,"\n%s L1 SER recovery start.",
19 wiphy_name(dev->mt76.hw->wiphy));
20
21- if (mtk_wed_device_active(&dev->mt76.mmio.wed_hif2))
22- mtk_wed_device_stop(&dev->mt76.mmio.wed_hif2);
23-
24- if (mtk_wed_device_active(&dev->mt76.mmio.wed))
25- mtk_wed_device_stop(&dev->mt76.mmio.wed);
26-
27 ieee80211_stop_queues(mt76_hw(dev));
28 if (phy2)
29 ieee80211_stop_queues(phy2->mt76->hw);
30--
developerd0c89452024-10-11 16:53:27 +0800312.45.2
developer66e89bc2024-04-23 14:50:01 +080032