wifi: mt76: mt7996: fix rx rate report for CBW320-2
authorPeter Chiu <chui-hao.chiu@mediatek.com>
Thu, 17 Aug 2023 08:01:50 +0000 (16:01 +0800)
committerFelix Fietkau <nbd@nbd.name>
Sat, 30 Sep 2023 18:03:04 +0000 (20:03 +0200)
RX vector reports channel bandwidth 320-1 and 320-2 with different
values. Fix it to correctly report rx rate when using CBW320-2.

Fixes: 80f5a31d2856 ("wifi: mt76: mt7996: add support for EHT rate report")
Signed-off-by: Peter Chiu <chui-hao.chiu@mediatek.com>
Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7996/mac.c

index 269e023e431133bb67ed1016e68f7dba53ca9767..c43839a2050880c35369b063d4dbd161b66b15a9 100644 (file)
@@ -433,7 +433,9 @@ mt7996_mac_fill_rx_rate(struct mt7996_dev *dev,
        case IEEE80211_STA_RX_BW_160:
                status->bw = RATE_INFO_BW_160;
                break;
+       /* rxv reports bw 320-1 and 320-2 separately */
        case IEEE80211_STA_RX_BW_320:
+       case IEEE80211_STA_RX_BW_320 + 1:
                status->bw = RATE_INFO_BW_320;
                break;
        default: