Re: [PATCH] staging: rtl8723bs: fix space before tab in rtw_io.h comment
From: Dan Carpenter
Date: Sun Aug 23 2026 - 15:07:29 EST
On Sun, Aug 23, 2026 at 06:07:50PM +0200, Tomasz Unger wrote:
> Remove a stray space before a tab in a comment.
>
> Signed-off-by: Tomasz Unger <tomasz.unger@xxxxxxxx>
> ---
> Verified with checkpatch.pl - no new warnings introduced by this change.
> ---
> drivers/staging/rtl8723bs/include/rtw_io.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/rtl8723bs/include/rtw_io.h b/drivers/staging/rtl8723bs/include/rtw_io.h
> index 3c99a2bc19bd..57628e4b42c0 100644
> --- a/drivers/staging/rtl8723bs/include/rtw_io.h
> +++ b/drivers/staging/rtl8723bs/include/rtw_io.h
> @@ -24,7 +24,7 @@ struct _io_ops {
>
> struct intf_hdl {
> struct adapter *padapter;
> - struct dvobj_priv *pintf_dev;/* pointer to &(padapter->dvobjpriv); */
> + struct dvobj_priv *pintf_dev;/* pointer to &(padapter->dvobjpriv); */
There should be a space before the /*. Also the parens in the comment
are unnecessary.
struct dvobj_priv *pintf_dev; /* pointer to &padapter->dvobjpriv */
regards,
dan carpenter