blob: 24d2bfd4a17f39c4e576c3a158b075f5def2e1ab [file] [log] [blame]
developer064da3c2023-06-13 15:57:26 +08001From 9cf96fa56a20d30f7e46e96d9c48c3568fbf11af Mon Sep 17 00:00:00 2001
2From: StanleyYP Wang <StanleyYP.Wang@mediatek.com>
3Date: Tue, 7 Mar 2023 17:05:01 +0800
4Subject: [PATCH 08/11] wifi: mt76: mt7996: use correct phy for background
5 radar event
6
7If driver directly uses the band_idx reported from the radar event to
8access mt76_phy array, it will get the wrong phy for background radar.
9Fix this by adjusting the statement.
10
11Fixes: 98686cd21624 ("wifi: mt76: mt7996: add driver for MediaTek Wi-Fi 7 (802.11be) devices")
12Signed-off-by: StanleyYP Wang <StanleyYP.Wang@mediatek.com>
13Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
14---
15 mt7996/mcu.c | 6 +++++-
16 1 file changed, 5 insertions(+), 1 deletion(-)
17
18diff --git a/mt7996/mcu.c b/mt7996/mcu.c
19index 0ede9769..20519bff 100644
20--- a/mt7996/mcu.c
21+++ b/mt7996/mcu.c
22@@ -339,7 +339,11 @@ mt7996_mcu_rx_radar_detected(struct mt7996_dev *dev, struct sk_buff *skb)
23 if (r->band_idx >= ARRAY_SIZE(dev->mt76.phys))
24 return;
25
26- mphy = dev->mt76.phys[r->band_idx];
27+ if (dev->rdd2_phy && r->band_idx == MT_RX_SEL2)
28+ mphy = dev->rdd2_phy->mt76;
29+ else
30+ mphy = dev->mt76.phys[r->band_idx];
31+
32 if (!mphy)
33 return;
34
35--
362.39.2
37