Skip to content

Commit 3128ea0

Browse files
committed
mt76: mt7921: 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]>
1 parent 77045a3 commit 3128ea0

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/wireless/mediatek/mt76/mt7921

1 file changed

+1
-1
lines changed

drivers/net/wireless/mediatek/mt76/mt7921/mac.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ mt7921_mac_fill_rx(struct mt7921_dev *dev, struct sk_buff *skb)
696696
status->nss =
697697
FIELD_GET(MT_PRXV_NSTS, v0) + 1;
698698
status->encoding = RX_ENC_VHT;
699-
if (i > 9)
699+
if (i > 11)
700700
return -EINVAL;
701701
break;
702702
case MT_PHY_TYPE_HE_MU:

0 commit comments

Comments
 (0)