mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 18:49:22 -04:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user