mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
wifi: mt76: mt7915: fix background radar event being blocked
The background radar uses MT_RX_SEL2 as its band indication, so fix it.
Fixes: 7a53eecd5c
(wifi: mt76: mt7915: check the correctness of event data)
Signed-off-by: StanleyYP Wang <StanleyYP.Wang@mediatek.com>
Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
62561a47af
commit
9a3994077d
1 changed files with 1 additions and 1 deletions
|
@ -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) &&
|
||||
|
|
Loading…
Reference in a new issue