Skip to content

Commit 77045a3

Browse files
committed
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]>
1 parent 402e010 commit 77045a3

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ mt7915_mac_fill_rx_rate(struct mt7915_dev *dev,
521521
status->encoding = RX_ENC_VHT;
522522
if (gi)
523523
status->enc_flags |= RX_ENC_FLAG_SHORT_GI;
524-
if (i > 9)
524+
if (i > 11)
525525
return -EINVAL;
526526
break;
527527
case MT_PHY_TYPE_HE_MU:

0 commit comments

Comments
 (0)