[PATCH v1] staging: rtl8723bs: fix block comment coding style in rtw_io.c

Rutansh Suthar posted 1 patch 2 weeks, 2 days ago
drivers/staging/rtl8723bs/core/rtw_io.c | 51 +++++++++++++------------
1 file changed, 26 insertions(+), 25 deletions(-)
[PATCH v1] staging: rtl8723bs: fix block comment coding style in rtw_io.c
Posted by Rutansh Suthar 2 weeks, 2 days ago
Fix block comment alignment and style in rtw_io.c to match kernel
coding style standards.

No functional changes intended.

Signed-off-by: Rutansh Suthar <rutanshsuthar@gmail.com>
---
 drivers/staging/rtl8723bs/core/rtw_io.c | 51 +++++++++++++------------
 1 file changed, 26 insertions(+), 25 deletions(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_io.c b/drivers/staging/rtl8723bs/core/rtw_io.c
index 79d543d88278..fc29a635a77c 100644
--- a/drivers/staging/rtl8723bs/core/rtw_io.c
+++ b/drivers/staging/rtl8723bs/core/rtw_io.c
@@ -5,25 +5,25 @@
  *
  ******************************************************************************/
 /*
-
-The purpose of rtw_io.c
-
-a. provides the API
-
-b. provides the protocol engine
-
-c. provides the software interface between caller and the hardware interface
-
-
-Compiler Flag Option:
-
-1. CONFIG_SDIO_HCI:
-    a. USE_SYNC_IRP:  Only sync operations are provided.
-    b. USE_ASYNC_IRP:Both sync/async operations are provided.
-
-jackson@realtek.com.tw
-
-*/
+ *
+ * The purpose of rtw_io.c
+ *
+ * a. provides the API
+ *
+ * b. provides the protocol engine
+ *
+ * c. provides the software interface between caller and the hardware interface
+ *
+ *
+ * Compiler Flag Option:
+ *
+ * 1. CONFIG_SDIO_HCI:
+ *     a. USE_SYNC_IRP:  Only sync operations are provided.
+ *     b. USE_ASYNC_IRP:Both sync/async operations are provided.
+ *
+ * jackson@realtek.com.tw
+ *
+ */
 
 #include <drv_types.h>
 
@@ -135,10 +135,11 @@ int rtw_init_io_priv(struct adapter *padapter, void (*set_intf_ops)(struct adapt
 }
 
 /*
-* Increase and check if the continual_io_error of this @param dvobjprive is larger than MAX_CONTINUAL_IO_ERR
-* @return true:
-* @return false:
-*/
+ * Increase and check if the continual_io_error of this @param dvobjprive is
+ * larger than MAX_CONTINUAL_IO_ERR
+ * @return true:
+ * @return false:
+ */
 int rtw_inc_and_chk_continual_io_error(struct dvobj_priv *dvobj)
 {
 	int error_count = atomic_inc_return(&dvobj->continual_io_error);
@@ -150,8 +151,8 @@ int rtw_inc_and_chk_continual_io_error(struct dvobj_priv *dvobj)
 }
 
 /*
-* Set the continual_io_error of this @param dvobjprive to 0
-*/
+ * Set the continual_io_error of this @param dvobjprive to 0
+ */
 void rtw_reset_continual_io_error(struct dvobj_priv *dvobj)
 {
 	atomic_set(&dvobj->continual_io_error, 0);
-- 
2.43.0
Re: [PATCH v1] staging: rtl8723bs: fix block comment coding style in rtw_io.c
Posted by Greg KH 2 days, 7 hours ago
On Tue, Dec 02, 2025 at 03:43:18PM -0800, Rutansh Suthar wrote:
> Fix block comment alignment and style in rtw_io.c to match kernel
> coding style standards.
> 
> No functional changes intended.
> 
> Signed-off-by: Rutansh Suthar <rutanshsuthar@gmail.com>
> ---
>  drivers/staging/rtl8723bs/core/rtw_io.c | 51 +++++++++++++------------
>  1 file changed, 26 insertions(+), 25 deletions(-)

Does not apply at all to the latest kernel tree :(