diff options
| author | Ping-Ke Shih <pkshih@realtek.com> | 2025-06-27 11:51:56 +0800 |
|---|---|---|
| committer | Ping-Ke Shih <pkshih@realtek.com> | 2025-07-04 10:22:14 +0800 |
| commit | 626afc6cd5369bbf3c4b487ab1bb87a7e5ff0b3b (patch) | |
| tree | a7bb55634674f82485f37a40be1f19e55eb96011 /drivers | |
| parent | 34d9a2aa7f5015f69899a8f665b052b8dcf87317 (diff) | |
| download | linux-626afc6cd5369bbf3c4b487ab1bb87a7e5ff0b3b.tar.gz linux-626afc6cd5369bbf3c4b487ab1bb87a7e5ff0b3b.zip | |
wifi: rtw89: 8851b: rfk: extend DPK path_ok type to u8
Originally the type of path_ok is bool to denote that DPK is ready on
certain path and can be enabled. For RTL8851B, hardware design can support
more than one calibration set, so use type u8 instead to record the
hardware set in current use.
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Link: https://patch.msgid.link/20250627035201.16416-2-pkshih@realtek.com
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/wireless/realtek/rtw89/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/realtek/rtw89/core.h b/drivers/net/wireless/realtek/rtw89/core.h index cdacf100a59a..06ceb77a1cc6 100644 --- a/drivers/net/wireless/realtek/rtw89/core.h +++ b/drivers/net/wireless/realtek/rtw89/core.h @@ -5146,7 +5146,7 @@ struct rtw89_dpk_bkup_para { enum rtw89_band band; enum rtw89_bandwidth bw; u8 ch; - bool path_ok; + u8 path_ok; u8 mdpd_en; u8 txagc_dpk; u8 ther_dpk; |
