From: Paarth Mahadik Date: Sat, 4 Apr 2026 07:26:26 +0000 (+0530) Subject: staging: rtl8723bs: fix logical continuation style X-Git-Tag: v7.2-rc1~66^2~182 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=885b1d8379323aa1777d021d4b0315871dca12eb;p=thirdparty%2Flinux.git staging: rtl8723bs: fix logical continuation style Logical continuation should be on the previous line, move && to the end of the preceding line and align the continuation with the opening parenthesis. Signed-off-by: Paarth Mahadik Reviewed-by: Ethan Tidmore Link: https://patch.msgid.link/20260404072626.134642-1-paarth.mahadik@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 27dfd00b42495..055ca95ff5a7a 100644 --- a/drivers/staging/rtl8723bs/core/rtw_btcoex.c +++ b/drivers/staging/rtl8723bs/core/rtw_btcoex.c @@ -10,8 +10,8 @@ void rtw_btcoex_MediaStatusNotify(struct adapter *padapter, u8 media_status) { - if ((media_status == RT_MEDIA_CONNECT) - && (check_fwstate(&padapter->mlmepriv, WIFI_AP_STATE) == true)) { + if ((media_status == RT_MEDIA_CONNECT) && + (check_fwstate(&padapter->mlmepriv, WIFI_AP_STATE) == true)) { rtw_hal_set_hwreg(padapter, HW_VAR_DL_RSVD_PAGE, NULL); }