wifi: rtw89: set 2TX for 1SS rate by default

To improve performance in range, for 1SS rate, transmit the same signal
on 2 antenna, which is called 2TX.

Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20250321034736.6269-1-pkshih@realtek.com
This commit is contained in:
Ping-Ke Shih
2025-03-21 11:47:36 +08:00
parent 1794d7ab34
commit 81433a8a4f

View File

@@ -3065,8 +3065,8 @@ static void __rtw89_fw_h2c_set_tx_path(struct rtw89_dev *rtwdev,
ntx_path = RF_A;
map_b = 0;
} else {
ntx_path = hal->antenna_tx ? hal->antenna_tx : RF_B;
map_b = hal->antenna_tx == RF_AB ? 1 : 0;
ntx_path = hal->antenna_tx ? hal->antenna_tx : RF_AB;
map_b = ntx_path == RF_AB ? 1 : 0;
}
SET_CMC_TBL_NTX_PATH_EN(skb->data, ntx_path);