Message ID | 20240912021626.10494-1-pkshih@realtek.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5575058ba95bb016243e54e5ca3371b9884ded56 |
Delegated to: | Kalle Valo |
Headers | show |
Series | wifi: rtw89: coex: add debug message of link counts on 2/5GHz bands for wl_info v7 | expand |
Ping-Ke Shih <pkshih@realtek.com> wrote: > The counts will be used by MLO, and it is ongoing to add the code, so add > debug message in todo part to avoid warnings reported by clang: > > coex.c:6323:23: warning: > variable 'cnt_2g' set but not used [-Wunused-but-set-variable] > 6323 | u8 i, mode, cnt = 0, cnt_2g = 0, cnt_5g = 0, ... > | ^ > coex.c:6323:35: warning: > variable 'cnt_5g' set but not used [-Wunused-but-set-variable] > 6323 | u8 i, mode, cnt = 0, cnt_2g = 0, cnt_5g = 0, ... > | ^ > > Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Patch applied to wireless.git, thanks. 5575058ba95b wifi: rtw89: coex: add debug message of link counts on 2/5GHz bands for wl_info v7
diff --git a/drivers/net/wireless/realtek/rtw89/coex.c b/drivers/net/wireless/realtek/rtw89/coex.c index df51b29142aa..8d27374db83c 100644 --- a/drivers/net/wireless/realtek/rtw89/coex.c +++ b/drivers/net/wireless/realtek/rtw89/coex.c @@ -6445,6 +6445,8 @@ static void _update_wl_info_v7(struct rtw89_dev *rtwdev, u8 rid) /* todo DBCC related event */ rtw89_debug(rtwdev, RTW89_DBG_BTC, "[BTC] wl_info phy_now=%d\n", phy_now); + rtw89_debug(rtwdev, RTW89_DBG_BTC, + "[BTC] rlink cnt_2g=%d cnt_5g=%d\n", cnt_2g, cnt_5g); if (wl_rinfo->dbcc_en != rtwdev->dbcc_en) { wl_rinfo->dbcc_chg = 1;
The counts will be used by MLO, and it is ongoing to add the code, so add debug message in todo part to avoid warnings reported by clang: coex.c:6323:23: warning: variable 'cnt_2g' set but not used [-Wunused-but-set-variable] 6323 | u8 i, mode, cnt = 0, cnt_2g = 0, cnt_5g = 0, ... | ^ coex.c:6323:35: warning: variable 'cnt_5g' set but not used [-Wunused-but-set-variable] 6323 | u8 i, mode, cnt = 0, cnt_2g = 0, cnt_5g = 0, ... | ^ Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> --- drivers/net/wireless/realtek/rtw89/coex.c | 2 ++ 1 file changed, 2 insertions(+)