From: Linus Probert Date: Mon, 27 Apr 2026 17:38:56 +0000 (+0200) Subject: staging: rtl8723bs: rtw_btcoex_LPS_Enter() -> rtw_btcoex_lps_enter() X-Git-Tag: v7.2-rc1~66^2~103 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=45b3b8bffa5a4f3d0331aa8c35671aeb7d323b2c;p=thirdparty%2Fkernel%2Flinux.git 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 --- diff --git a/drivers/staging/rtl8723bs/core/rtw_btcoex.c b/drivers/staging/rtl8723bs/core/rtw_btcoex.c index c2926322ebd24..c9dd1a3cfabbe 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 77c474919ffc1..fc977d5497c42 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 61a67360af008..22010239515a5 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__ */