From c8e50e93c019904c950135da55d494a169fbf088 Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Mon, 27 Apr 2026 19:38:54 +0200 Subject: [PATCH] staging: rtl8723bs: rtw_btcoex_HaltNotify() -> rtw_btcoex_halt_notify() Renames function rtw_btcoex_HaltNotify to rtw_btcoex_halt_notify 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-6-linus.probert@gmail.com Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8723bs/core/rtw_btcoex.c | 2 +- drivers/staging/rtl8723bs/include/rtw_btcoex.h | 2 +- drivers/staging/rtl8723bs/os_dep/sdio_intf.c | 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 38d6b66a24d8..197bc4e7f73b 100644 --- a/drivers/staging/rtl8723bs/core/rtw_btcoex.c +++ b/drivers/staging/rtl8723bs/core/rtw_btcoex.c @@ -18,7 +18,7 @@ void rtw_btcoex_media_status_notify(struct adapter *padapter, u8 media_status) hal_btcoex_MediaStatusNotify(padapter, media_status); } -void rtw_btcoex_HaltNotify(struct adapter *padapter) +void rtw_btcoex_halt_notify(struct adapter *padapter) { if (!padapter->bup) return; diff --git a/drivers/staging/rtl8723bs/include/rtw_btcoex.h b/drivers/staging/rtl8723bs/include/rtw_btcoex.h index 6eced86d6623..d9ed8f2d8d14 100644 --- a/drivers/staging/rtl8723bs/include/rtw_btcoex.h +++ b/drivers/staging/rtl8723bs/include/rtw_btcoex.h @@ -15,7 +15,7 @@ #define PACKET_EAPOL 3 void rtw_btcoex_media_status_notify(struct adapter *padapter, u8 media_status); -void rtw_btcoex_HaltNotify(struct adapter *padapter); +void rtw_btcoex_halt_notify(struct adapter *padapter); /* ================================================== */ /* Below Functions are called by BT-Coex */ diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c index 97a1e0da3034..cdb0b64cfaeb 100644 --- a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c +++ b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c @@ -400,7 +400,7 @@ static void rtw_dev_remove(struct sdio_func *func) LeaveAllPowerSaveMode(padapter); - rtw_btcoex_HaltNotify(padapter); + rtw_btcoex_halt_notify(padapter); rtw_sdio_if1_deinit(padapter);