Skip to content

Commit

Permalink
mt76: mt7921: fix injected MPDU transmission to not use HW A-MSDU
Browse files Browse the repository at this point in the history
Similar to mt7915 driver, do not aggregate injected frames in
HW A-MSDU block.

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
LorenzoBianconi authored and nbd168 committed Feb 23, 2022
1 parent 4f43095 commit de06d82
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions mt7921/mac.c
Expand Up @@ -913,6 +913,7 @@ mt7921_mac_write_txwi_80211(struct mt7921_dev *dev, __le32 *txwi,
val = MT_TXD3_SN_VALID |
FIELD_PREP(MT_TXD3_SEQ, IEEE80211_SEQ_TO_SN(seqno));
txwi[3] |= cpu_to_le32(val);
txwi[7] &= ~cpu_to_le32(MT_TXD7_HW_AMSDU);
}

if (mt76_is_mmio(&dev->mt76)) {
Expand Down

0 comments on commit de06d82

Please sign in to comment.