From 45b3b8bffa5a4f3d0331aa8c35671aeb7d323b2c Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Mon, 27 Apr 2026 19:38:56 +0200 Subject: [PATCH] staging: rtl8723bs: rtw_btcoex_LPS_Enter() -> rtw_btcoex_lps_enter() Renames rtw_btcoex_LPS_Enter to rtw_btcoex_lps_enter in order to conform to kernel code style. Found using checkpatch.pl. Signed-off-by: Linus Probert Reviewed-by: Luka Gejak Link: https://patch.msgid.link/20260427173857.585742-8-linus.probert@gmail.com Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8723bs/core/rtw_btcoex.c | 2 +- drivers/staging/rtl8723bs/hal/hal_btcoex.c | 2 +- drivers/staging/rtl8723bs/include/rtw_btcoex.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/rtl8723bs/core/rtw_btcoex.c b/drivers/staging/rtl8723bs/core/rtw_btcoex.c index c2926322ebd2..c9dd1a3cfabb 100644 --- a/drivers/staging/rtl8723bs/core/rtw_btcoex.c +++ b/drivers/staging/rtl8723bs/core/rtw_btcoex.c @@ -49,7 +49,7 @@ void rtw_btcoex_reject_ap_aggregated_packet(struct adapter *padapter, u8 enable) } } -void rtw_btcoex_LPS_Enter(struct adapter *padapter) +void rtw_btcoex_lps_enter(struct adapter *padapter) { struct pwrctrl_priv *pwrpriv; u8 lps_val; diff --git a/drivers/staging/rtl8723bs/hal/hal_btcoex.c b/drivers/staging/rtl8723bs/hal/hal_btcoex.c index 77c474919ffc..fc977d5497c4 100644 --- a/drivers/staging/rtl8723bs/hal/hal_btcoex.c +++ b/drivers/staging/rtl8723bs/hal/hal_btcoex.c @@ -49,7 +49,7 @@ static void halbtcoutsrc_EnterLps(struct btc_coexist *pBtCoexist) pBtCoexist->btInfo.bBtCtrlLps = true; pBtCoexist->btInfo.bBtLpsOn = true; - rtw_btcoex_LPS_Enter(padapter); + rtw_btcoex_lps_enter(padapter); } static void halbtcoutsrc_NormalLps(struct btc_coexist *pBtCoexist) diff --git a/drivers/staging/rtl8723bs/include/rtw_btcoex.h b/drivers/staging/rtl8723bs/include/rtw_btcoex.h index 61a67360af00..22010239515a 100644 --- a/drivers/staging/rtl8723bs/include/rtw_btcoex.h +++ b/drivers/staging/rtl8723bs/include/rtw_btcoex.h @@ -21,7 +21,7 @@ void rtw_btcoex_halt_notify(struct adapter *padapter); /* Below Functions are called by BT-Coex */ /* ================================================== */ void rtw_btcoex_reject_ap_aggregated_packet(struct adapter *padapter, u8 enable); -void rtw_btcoex_LPS_Enter(struct adapter *padapter); +void rtw_btcoex_lps_enter(struct adapter *padapter); void rtw_btcoex_LPS_Leave(struct adapter *padapter); #endif /* __RTW_BTCOEX_H__ */