All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] staging: rtl8723bs: rtw_sta_mgt cleanup series
@ 2026-06-01  9:37 Eugene Mavick
  2026-06-01  9:37 ` [PATCH 1/2] staging: rtl8723bs: fix line length warning Eugene Mavick
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Eugene Mavick @ 2026-06-01  9:37 UTC (permalink / raw)
  To: gregkh
  Cc: hansg, straube.linux, nikolayof23, mavick4022, khomenkov,
	william.hansen.baird, maxwell2119, dikshakdevgan, arthur.stupa,
	linux-staging, linux-kernel

Fix line length and indentation issues in core/rtw_sta_mgt.c

Eugene Mavick (2):
  staging: rtl8723bs: fix line length warning
  staging: rtl8723bs: fix alignment

 drivers/staging/rtl8723bs/core/rtw_sta_mgt.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

-- 
2.51.2


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

* [PATCH 1/2] staging: rtl8723bs: fix line length warning
  2026-06-01  9:37 [PATCH 0/2] staging: rtl8723bs: rtw_sta_mgt cleanup series Eugene Mavick
@ 2026-06-01  9:37 ` Eugene Mavick
  2026-07-07 11:00   ` Greg KH
  2026-06-01  9:37 ` [PATCH 2/2] staging: rtl8723bs: fix alignment Eugene Mavick
  2026-07-12  8:35 ` [PATCH 0/2] staging: rtl8723bs: rtw_sta_mgt cleanup series Eugene Mavick
  2 siblings, 1 reply; 5+ messages in thread
From: Eugene Mavick @ 2026-06-01  9:37 UTC (permalink / raw)
  To: gregkh
  Cc: hansg, straube.linux, nikolayof23, mavick4022, khomenkov,
	william.hansen.baird, maxwell2119, dikshakdevgan, arthur.stupa,
	linux-staging, linux-kernel

Split comment exceeding 100 columns to improve readability and clear
checkpatch warning

Signed-off-by: Eugene Mavick <mavick4022@gmail.com>
---
 drivers/staging/rtl8723bs/core/rtw_sta_mgt.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
index a1b7fe843979..02f8564d32a7 100644
--- a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
+++ b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
@@ -222,7 +222,8 @@ struct	sta_info *rtw_alloc_stainfo(struct	sta_priv *pstapriv, u8 *hwaddr)
 
 	/*  Commented by Albert 2009/08/13 */
 	/*  For the SMC router, the sequence number of first packet of WPS handshake will be 0. */
-	/*  In this case, this packet will be dropped by recv_decache function if we use the 0x00 as the default value for tid_rxseq variable. */
+	/*  This packet will be dropped by recv_decache function */
+	/*  if we use the 0x00 as the default value for tid_rxseq variable. */
 	/*  So, we initialize the tid_rxseq variable as the 0xffff. */
 
 	for (i = 0; i < 16; i++)
-- 
2.51.2


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

* [PATCH 2/2] staging: rtl8723bs: fix alignment
  2026-06-01  9:37 [PATCH 0/2] staging: rtl8723bs: rtw_sta_mgt cleanup series Eugene Mavick
  2026-06-01  9:37 ` [PATCH 1/2] staging: rtl8723bs: fix line length warning Eugene Mavick
@ 2026-06-01  9:37 ` Eugene Mavick
  2026-07-12  8:35 ` [PATCH 0/2] staging: rtl8723bs: rtw_sta_mgt cleanup series Eugene Mavick
  2 siblings, 0 replies; 5+ messages in thread
From: Eugene Mavick @ 2026-06-01  9:37 UTC (permalink / raw)
  To: gregkh
  Cc: hansg, straube.linux, nikolayof23, mavick4022, khomenkov,
	william.hansen.baird, maxwell2119, dikshakdevgan, arthur.stupa,
	linux-staging, linux-kernel

Fix alignment to improve code readability and clear checkpatch warning:
CHECK: Alignment should match open parenthesis

Signed-off-by: Eugene Mavick <mavick4022@gmail.com>
---
 drivers/staging/rtl8723bs/core/rtw_sta_mgt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
index 02f8564d32a7..e534045dd467 100644
--- a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
+++ b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
@@ -249,7 +249,7 @@ struct	sta_info *rtw_alloc_stainfo(struct	sta_priv *pstapriv, u8 *hwaddr)
 
 		/* init recv timer */
 		timer_setup(&preorder_ctrl->reordering_ctrl_timer,
-				rtw_reordering_ctrl_timeout_handler, 0);
+			    rtw_reordering_ctrl_timeout_handler, 0);
 	}
 
 	/* init for DM */
-- 
2.51.2


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

* Re: [PATCH 1/2] staging: rtl8723bs: fix line length warning
  2026-06-01  9:37 ` [PATCH 1/2] staging: rtl8723bs: fix line length warning Eugene Mavick
@ 2026-07-07 11:00   ` Greg KH
  0 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2026-07-07 11:00 UTC (permalink / raw)
  To: Eugene Mavick
  Cc: hansg, straube.linux, nikolayof23, khomenkov,
	william.hansen.baird, maxwell2119, dikshakdevgan, arthur.stupa,
	linux-staging, linux-kernel

On Mon, Jun 01, 2026 at 05:37:56PM +0800, Eugene Mavick wrote:
> Split comment exceeding 100 columns to improve readability and clear
> checkpatch warning
> 
> Signed-off-by: Eugene Mavick <mavick4022@gmail.com>
> ---
>  drivers/staging/rtl8723bs/core/rtw_sta_mgt.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
> index a1b7fe843979..02f8564d32a7 100644
> --- a/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
> +++ b/drivers/staging/rtl8723bs/core/rtw_sta_mgt.c
> @@ -222,7 +222,8 @@ struct	sta_info *rtw_alloc_stainfo(struct	sta_priv *pstapriv, u8 *hwaddr)
>  
>  	/*  Commented by Albert 2009/08/13 */
>  	/*  For the SMC router, the sequence number of first packet of WPS handshake will be 0. */
> -	/*  In this case, this packet will be dropped by recv_decache function if we use the 0x00 as the default value for tid_rxseq variable. */
> +	/*  This packet will be dropped by recv_decache function */
> +	/*  if we use the 0x00 as the default value for tid_rxseq variable. */
>  	/*  So, we initialize the tid_rxseq variable as the 0xffff. */

Why not just turn this into a proper multi-line comment block?

thanks,

greg k-h

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

* Re: [PATCH 0/2] staging: rtl8723bs: rtw_sta_mgt cleanup series
  2026-06-01  9:37 [PATCH 0/2] staging: rtl8723bs: rtw_sta_mgt cleanup series Eugene Mavick
  2026-06-01  9:37 ` [PATCH 1/2] staging: rtl8723bs: fix line length warning Eugene Mavick
  2026-06-01  9:37 ` [PATCH 2/2] staging: rtl8723bs: fix alignment Eugene Mavick
@ 2026-07-12  8:35 ` Eugene Mavick
  2 siblings, 0 replies; 5+ messages in thread
From: Eugene Mavick @ 2026-07-12  8:35 UTC (permalink / raw)
  To: m
  Cc: arthur.stupa, dikshakdevgan, gregkh, hansg, khomenkov,
	linux-kernel, linux-staging, maxwell2119, nikolayof23,
	straube.linux, william.hansen.baird

I would like to abandon this patch series.

Best regards,
Eugene Mavick

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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-01  9:37 [PATCH 0/2] staging: rtl8723bs: rtw_sta_mgt cleanup series Eugene Mavick
2026-06-01  9:37 ` [PATCH 1/2] staging: rtl8723bs: fix line length warning Eugene Mavick
2026-07-07 11:00   ` Greg KH
2026-06-01  9:37 ` [PATCH 2/2] staging: rtl8723bs: fix alignment Eugene Mavick
2026-07-12  8:35 ` [PATCH 0/2] staging: rtl8723bs: rtw_sta_mgt cleanup series Eugene Mavick

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.