mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Re: [PATCH v2 1/1] staging: rtl8723bs: style cleanups in rtw_mlme.c
  2026-01-12  9:05 ` [PATCH v2 1/1] " Lorenzo Simonelli
@ 2026-01-12  8:14   ` Greg KH
  0 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2026-01-12  8:14 UTC (permalink / raw)
  To: Lorenzo Simonelli; +Cc: linux-staging, linux-kernel

On Mon, Jan 12, 2026 at 10:05:46AM +0100, Lorenzo Simonelli wrote:
> This patch performs style cleanups in rtw_mlme.c, specifically
> removing unnecessary boolean comparisons and trailing whitespaces.
> These changes improve adherence to the kernel coding style.
> 
> Signed-off-by: Lorenzo Simonelli <lorenzosimonelli02@gmail.com>
> 
> ---
> v2:
> - Dropped the patch for sm750fb due to build regression.
> - Consolidated remaining style cleanups into this single patch.

As my bot said, you need to do only one-logical-thing per patch.  That
is not what is happening here :(

Please break this up into multiple patches.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2 0/1] staging: rtl8723bs: style cleanups in rtw_mlme.c
@ 2026-01-12  9:05 Lorenzo Simonelli
  2026-01-12  9:05 ` [PATCH v2 1/1] " Lorenzo Simonelli
  0 siblings, 1 reply; 5+ messages in thread
From: Lorenzo Simonelli @ 2026-01-12  9:05 UTC (permalink / raw)
  To: gregkh; +Cc: linux-staging, linux-kernel, Lorenzo Simonelli

This series contains style cleanups for the rtl8723bs driver.
The changes focus on removing unnecessary comparisons and 
trailing whitespaces in rtw_mlme.c.

Signed-off-by: Lorenzo Simonelli <lorenzosimonelli02@gmail.com>

---
v2:
- Dropped the patch for sm750fb due to build regression.
- Consolidated remaining style cleanups into a single patch.
- Verified build with make M=drivers/staging/rtl8723bs/

Lorenzo Simonelli (1):
  staging: rtl8723bs: style cleanups in rtw_mlme.c

 drivers/staging/rtl8723bs/core/rtw_mlme.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

-- 
2.52.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2 1/1] staging: rtl8723bs: style cleanups in rtw_mlme.c
  2026-01-12  9:05 [PATCH v2 0/1] staging: rtl8723bs: style cleanups in rtw_mlme.c Lorenzo Simonelli
@ 2026-01-12  9:05 ` Lorenzo Simonelli
  2026-01-12  8:14   ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Lorenzo Simonelli @ 2026-01-12  9:05 UTC (permalink / raw)
  To: gregkh; +Cc: linux-staging, linux-kernel, Lorenzo Simonelli

This patch performs style cleanups in rtw_mlme.c, specifically
removing unnecessary boolean comparisons and trailing whitespaces.
These changes improve adherence to the kernel coding style.

Signed-off-by: Lorenzo Simonelli <lorenzosimonelli02@gmail.com>

---
v2:
- Dropped the patch for sm750fb due to build regression.
- Consolidated remaining style cleanups into this single patch.
- Verified build for rtl8723bs/core/rtw_mlme.o

 drivers/staging/rtl8723bs/core/rtw_mlme.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_mlme.c b/drivers/staging/rtl8723bs/core/rtw_mlme.c
index 98704179a..d9e6778e1 100644
--- a/drivers/staging/rtl8723bs/core/rtw_mlme.c
+++ b/drivers/staging/rtl8723bs/core/rtw_mlme.c
@@ -468,11 +468,11 @@ static void update_current_network(struct adapter *adapter, struct wlan_bssid_ex
 		 &pmlmepriv->cur_network.network,
 		 &pmlmepriv->cur_network.network,
 		 &pmlmepriv->cur_network.network);
-
-	if ((check_fwstate(pmlmepriv, _FW_LINKED) == true) && (is_same_network(&pmlmepriv->cur_network.network, pnetwork, 0))) {
+	if ((check_fwstate(pmlmepriv, _FW_LINKED) == true) &&
+	    (is_same_network(&pmlmepriv->cur_network.network, pnetwork, 0))) {
 		 update_network(&pmlmepriv->cur_network.network, pnetwork, adapter, true);
 		 rtw_update_protection(adapter, (pmlmepriv->cur_network.network.ies) + sizeof(struct ndis_802_11_fix_ie),
-				       pmlmepriv->cur_network.network.ie_length);
+				 pmlmepriv->cur_network.network.ie_length);
 	 }
 }
 
@@ -710,7 +710,7 @@ void rtw_surveydone_event_callback(struct adapter    *adapter, u8 *pbuf)
 	 rtw_set_signal_stat_timer(&adapter->recvpriv);
 
 	 if (pmlmepriv->to_join) {
-		if ((check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) == true)) {
+		if (check_fwstate(pmlmepriv, WIFI_ADHOC_STATE)) {
 			 if (check_fwstate(pmlmepriv, _FW_LINKED) == false) {
 				 set_fwstate(pmlmepriv, _FW_UNDER_LINKING);
 
@@ -1386,8 +1386,8 @@ void rtw_stassoc_event_callback(struct adapter *adapter, u8 *pbuf)
 
 	 spin_lock_bh(&pmlmepriv->lock);
 
-	if ((check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) == true) ||
-		(check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) == true)) {
+	if (check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) ||
+		check_fwstate(pmlmepriv, WIFI_ADHOC_STATE)) {
 		 if (adapter->stapriv.asoc_sta_count == 2) {
 			 spin_lock_bh(&pmlmepriv->scanned_queue.lock);
 			 ptarget_wlan = rtw_find_network(&pmlmepriv->scanned_queue, cur_network->network.mac_address);
@@ -2018,7 +2018,7 @@ int rtw_restruct_wmm_ie(struct adapter *adapter, u8 *in_ie, u8 *out_ie, uint in_
 	 return ielength;
 }
 
-/* Ported from 8185: IsInPreAuthKeyList(). 
+/* Ported from 8185: IsInPreAuthKeyList().
  * (Renamed from SecIsInPreAuthKeyList(), 2006-10-13.)
  * Added by Annie, 2006-05-07.
  *
-- 
2.52.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2 0/1] staging: rtl8723bs: style cleanups in rtw_mlme.c
@ 2026-01-11 23:43 Lorenzo Simonelli
  0 siblings, 0 replies; 5+ messages in thread
From: Lorenzo Simonelli @ 2026-01-11 23:43 UTC (permalink / raw)
  To: gregkh; +Cc: linux-staging, linux-kernel, Lorenzo Simonelli

This series contains style cleanups for the rtl8723bs driver.
The changes focus on removing unnecessary comparisons and 
trailing whitespaces in rtw_mlme.c.

Signed-off-by: Lorenzo Simonelli <lorenzosimonelli02@gmail.com>

---
v2:
- Dropped the patch for sm750fb due to build regression.
- Consolidated remaining style cleanups into a single patch.
- Verified build with make M=drivers/staging/rtl8723bs/

Lorenzo Simonelli (1):
  staging: rtl8723bs: style cleanups in rtw_mlme.c

 drivers/staging/rtl8723bs/core/rtw_mlme.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

-- 
2.52.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2 0/1] staging: rtl8723bs: style cleanups in rtw_mlme.c
@ 2026-01-11 14:29 Lorenzo Simonelli
  0 siblings, 0 replies; 5+ messages in thread
From: Lorenzo Simonelli @ 2026-01-11 14:29 UTC (permalink / raw)
  To: gregkh; +Cc: linux-staging, linux-kernel, Lorenzo Simonelli

This second version of the series drops the patch for sm750fb as it
introduced a build regression (pointed out by Greg K-H). This version
focuses only on verified style cleanups for rtl8723bs.

Changes in v2:
- Dropped patch: "staging: sm750fb: fix static const char array warning"
- Verified build for rtl8723bs/core/rtw_mlme.o

Lorenzo Simonelli (1):
  staging: rtl8723bs: style cleanups in rtw_mlme.c

 drivers/staging/rtl8723bs/core/rtw_mlme.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

-- 
2.52.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-01-12  8:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-01-12  9:05 [PATCH v2 0/1] staging: rtl8723bs: style cleanups in rtw_mlme.c Lorenzo Simonelli
2026-01-12  9:05 ` [PATCH v2 1/1] " Lorenzo Simonelli
2026-01-12  8:14   ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2026-01-11 23:43 [PATCH v2 0/1] " Lorenzo Simonelli
2026-01-11 14:29 Lorenzo Simonelli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®