summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorPaarth Mahadik <paarth.mahadik@gmail.com>2026-04-04 12:56:26 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2026-04-27 05:01:52 -0600
commit885b1d8379323aa1777d021d4b0315871dca12eb (patch)
treeba7dcf263ea4805c6e6f146eb46b1de41f00e94a /drivers
parenta2e327e2d0ef61ab6584cf4a0e9767dcf127df5a (diff)
downloadlinux-885b1d8379323aa1777d021d4b0315871dca12eb.tar.gz
linux-885b1d8379323aa1777d021d4b0315871dca12eb.zip
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 <paarth.mahadik@gmail.com> Reviewed-by: Ethan Tidmore <ethantidmore06@gmail.com> Link: https://patch.msgid.link/20260404072626.134642-1-paarth.mahadik@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/rtl8723bs/core/rtw_btcoex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8723bs/core/rtw_btcoex.c b/drivers/staging/rtl8723bs/core/rtw_btcoex.c
index 27dfd00b4249..055ca95ff5a7 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);
}