diff options
author | Kuan-Chung Chen <[email protected]> | 2024-06-21 20:36:17 +0800 |
---|---|---|
committer | Ping-Ke Shih <[email protected]> | 2024-06-27 09:54:18 +0800 |
commit | 2f35712ab82683554c660bc2456f05785835efbe (patch) | |
tree | 52094e5e78f900ba14d6f2a9b5f72d12f146dfbc | |
parent | 5f7e92c59b8e03ac90130223c2ebb4449373b9cd (diff) |
wifi: rtw89: 8852b: fix definition of KIP register number
An incorrect definition caused DPK to fail to backup and
restore a set of KIP registers. Fixing this will improve
RX throughput from 902 to 997 Mbps.
Fixes: 5b8471ace5b1 ("wifi: rtw89: 8852b: rfk: add DPK")
Signed-off-by: Kuan-Chung Chen <[email protected]>
Signed-off-by: Ping-Ke Shih <[email protected]>
Link: https://patch.msgid.link/[email protected]
-rw-r--r-- | drivers/net/wireless/realtek/rtw89/rtw8852b_rfk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852b_rfk.c b/drivers/net/wireless/realtek/rtw89/rtw8852b_rfk.c index 7c90e98dc1d9..12354612441c 100644 --- a/drivers/net/wireless/realtek/rtw89/rtw8852b_rfk.c +++ b/drivers/net/wireless/realtek/rtw89/rtw8852b_rfk.c @@ -21,7 +21,7 @@ #define RTW8852B_RF_REL_VERSION 34 #define RTW8852B_DPK_VER 0x0d #define RTW8852B_DPK_RF_PATH 2 -#define RTW8852B_DPK_KIP_REG_NUM 2 +#define RTW8852B_DPK_KIP_REG_NUM 3 #define _TSSI_DE_MASK GENMASK(21, 12) #define ADDC_T_AVG 100 |