diff options
author | Felix Fietkau <[email protected]> | 2022-03-25 21:14:26 +0100 |
---|---|---|
committer | Felix Fietkau <[email protected]> | 2022-05-13 09:39:34 +0200 |
commit | 77045a3740fa3d2325293cf8623899532b39303e (patch) | |
tree | 1ee425f89976f2b8e9b99c34d16c0ced1de4fcee | |
parent | 402e01092e79583923579662f244bc538f466f36 (diff) |
mt76: mt7915: accept rx frames with non-standard VHT MCS10-11
The hardware receives them properly, they should not be dropped
Signed-off-by: Felix Fietkau <[email protected]>
-rw-r--r-- | drivers/net/wireless/mediatek/mt76/mt7915/mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/mac.c b/drivers/net/wireless/mediatek/mt76/mt7915/mac.c index bab70cf981bb..957895fa73c0 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7915/mac.c +++ b/drivers/net/wireless/mediatek/mt76/mt7915/mac.c @@ -521,7 +521,7 @@ mt7915_mac_fill_rx_rate(struct mt7915_dev *dev, status->encoding = RX_ENC_VHT; if (gi) status->enc_flags |= RX_ENC_FLAG_SHORT_GI; - if (i > 9) + if (i > 11) return -EINVAL; break; case MT_PHY_TYPE_HE_MU: |