Skip to content

Commit

Permalink
wifi: mt76: mt7996: fix chainmask calculation in mt7996_set_antenna()
Browse files Browse the repository at this point in the history
Fix per-band chainmask when restoring from the dev chainmask.

Fixes: 98686cd21624 ("wifi: mt76: mt7996: add driver for MediaTek Wi-Fi 7 (802.11be) devices")
Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
csyuanc authored and nbd168 committed Jan 23, 2023
1 parent f1f8bae commit f47087a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mt7996/main.c
Expand Up @@ -880,7 +880,10 @@ mt7996_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
phy->mt76->antenna_mask = tx_ant;

/* restore to the origin chainmask which might have auxiliary path */
if (hweight8(tx_ant) == max_nss)
if (hweight8(tx_ant) == max_nss && band_idx < MT_BAND2)
phy->mt76->chainmask = ((dev->chainmask >> shift) &
(BIT(dev->chainshift[band_idx + 1] - shift) - 1)) << shift;
else if (hweight8(tx_ant) == max_nss)
phy->mt76->chainmask = (dev->chainmask >> shift) << shift;
else
phy->mt76->chainmask = tx_ant << shift;
Expand Down

0 comments on commit f47087a

Please sign in to comment.