diff mbox series

[rtw-next] wifi: rtw89: set 2TX for 1SS rate by default

Message ID 20250321034736.6269-1-pkshih@realtek.com
State New
Headers show
Series [rtw-next] wifi: rtw89: set 2TX for 1SS rate by default | expand

Commit Message

Ping-Ke Shih March 21, 2025, 3:47 a.m. UTC
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>
---
 drivers/net/wireless/realtek/rtw89/fw.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Ping-Ke Shih March 31, 2025, 6:05 a.m. UTC | #1
Ping-Ke Shih <pkshih@realtek.com> wrote:

> 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>

1 patch(es) applied to rtw-next branch of rtw.git, thanks.

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

---
https://github.com/pkshih/rtw.git
diff mbox series

Patch

diff --git a/drivers/net/wireless/realtek/rtw89/fw.c b/drivers/net/wireless/realtek/rtw89/fw.c
index 8643b17866f8..c7172334f895 100644
--- a/drivers/net/wireless/realtek/rtw89/fw.c
+++ b/drivers/net/wireless/realtek/rtw89/fw.c
@@ -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);