[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250726043218.386738-13-vivek.balachandhar@gmail.com>
Date: Sat, 26 Jul 2025 04:32:10 +0000
From: Vivek BalachandharTN <vivek.balachandhar@...il.com>
To: gregkh@...uxfoundation.org
Cc: linux-staging@...ts.linux.dev,
linux-kernel@...r.kernel.org,
vivek.balachandhar@...il.com
Subject: [PATCH 12/20] staging: rtl8723bs: fix excessive indentation in nested if statement
Reduced indentation in a nested if-statement to match kernel coding
style and improve readability. No functional changes introduced.
Signed-off-by: Vivek BalachandharTN <vivek.balachandhar@...il.com>
---
drivers/staging/rtl8723bs/core/rtw_mlme.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8723bs/core/rtw_mlme.c b/drivers/staging/rtl8723bs/core/rtw_mlme.c
index 547734f5492e..0679253355fb 100644
--- a/drivers/staging/rtl8723bs/core/rtw_mlme.c
+++ b/drivers/staging/rtl8723bs/core/rtw_mlme.c
@@ -1160,8 +1160,8 @@ void rtw_joinbss_event_prehandle(struct adapter *adapter, u8 *pbuf)
ptarget_wlan = rtw_find_network(&pmlmepriv->scanned_queue, pnetwork->network.mac_address);
if (check_fwstate(pmlmepriv, WIFI_STATION_STATE) == true) {
- if (ptarget_wlan)
- ptarget_wlan->fixed = true;
+ if (ptarget_wlan)
+ ptarget_wlan->fixed = true;
}
}
--
2.39.5
Powered by blists - more mailing lists