wifi: rtw89: 8922a: fix argument to hal_reset in bb_cfg_txrx_path
authorZong-Zhe Yang <kevin_yang@realtek.com>
Wed, 17 Apr 2024 09:00:58 +0000 (17:00 +0800)
committerPing-Ke Shih <pkshih@realtek.com>
Mon, 22 Apr 2024 01:29:15 +0000 (09:29 +0800)
When hal_reset on MAC_1/PHY_1, we should pass tx_en1 instead of tx_en0.

Signed-off-by: Zong-Zhe Yang <kevin_yang@realtek.com>
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://msgid.link/20240417090058.42663-1-pkshih@realtek.com
drivers/net/wireless/realtek/rtw89/rtw8922a.c

index 1d0b6de0eeab97685f5a2cbce1788aeb2b2d6487..3b3ea3a7c19ae8f4b4ffccaf1ecba3765046c7a6 100644 (file)
@@ -2126,7 +2126,7 @@ static void rtw8922a_bb_cfg_txrx_path(struct rtw89_dev *rtwdev)
        rtw8922a_hal_reset(rtwdev, RTW89_PHY_0, RTW89_MAC_0, band, &tx_en0, false);
        if (rtwdev->dbcc_en)
                rtw8922a_hal_reset(rtwdev, RTW89_PHY_1, RTW89_MAC_1, band,
-                                  &tx_en0, false);
+                                  &tx_en1, false);
 }
 
 static u8 rtw8922a_get_thermal(struct rtw89_dev *rtwdev, enum rtw89_rf_path rf_path)