[PATCH] wifi: mt76: mt7915: fix background radar event being blocked

StanleyYP.Wang StanleyYP.Wang at mediatek.com
Wed Mar 29 22:17:27 PDT 2023


From: StanleyYP Wang <StanleyYP.Wang at mediatek.com>

The mcu event of background radar will be blocked since the band_idx of 
the background radar event is MT_RX_SEL2, which is larger than MT_BAND1. 
Therefore, this commit fixes the boundary of band_idx checking.

Fixes: 7a53eecd5c87 ("wifi: mt76: mt7915: check the correctness of event data")
Signed-off-by: StanleyYP Wang <StanleyYP.Wang at mediatek.com>
---
 drivers/net/wireless/mediatek/mt76/mt7915/mcu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/mcu.c b/drivers/net/wireless/mediatek/mt76/mt7915/mcu.c
index 16f09ead307d..a37ab903af99 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7915/mcu.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7915/mcu.c
@@ -274,7 +274,7 @@ mt7915_mcu_rx_radar_detected(struct mt7915_dev *dev, struct sk_buff *skb)
 
 	r = (struct mt7915_mcu_rdd_report *)skb->data;
 
-	if (r->band_idx > MT_BAND1)
+	if (r->band_idx > MT_RX_SEL2)
 		return;
 
 	if ((r->band_idx && !dev->phy.mt76->band_idx) &&
-- 
2.18.0




More information about the Linux-mediatek mailing list