From: Shayne Chen Date: Fri, 11 Mar 2022 14:44:25 +0000 (+0800) Subject: mt76: mt7915: set band1 TGID field in tx descriptor X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=70493b8692495adc5735f498db4f7fe71be24b3c;p=linux.git mt76: mt7915: set band1 TGID field in tx descriptor Set proper group index of tx descriptor for band1. Signed-off-by: Shayne Chen Signed-off-by: Felix Fietkau --- diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/mac.c b/drivers/net/wireless/mediatek/mt76/mt7915/mac.c index 44866d4dab977..fdfdded9613d4 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7915/mac.c +++ b/drivers/net/wireless/mediatek/mt76/mt7915/mac.c @@ -1218,8 +1218,7 @@ void mt7915_mac_write_txwi(struct mt7915_dev *dev, __le32 *txwi, FIELD_PREP(MT_TXD1_WLAN_IDX, wcid->idx) | FIELD_PREP(MT_TXD1_OWN_MAC, omac_idx); - if ((ext_phy || band_idx) && - q_idx >= MT_LMAC_ALTX0 && q_idx <= MT_LMAC_BCN0) + if (ext_phy || band_idx) val |= MT_TXD1_TGID; txwi[1] = cpu_to_le32(val);