The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Nikolay Kulikov <nikolayof23@gmail.com>
To: Pramod Maurya <pramod.nexgen@gmail.com>
Cc: gregkh@linuxfoundation.org, linux-staging@lists.linux.dev,
	linux-kernel@vger.kernel.org,
	Giorgi Tchankvetadze <giorgitchankvetadze1997@gmail.com>
Subject: Re: [PATCH 2/2] staging: rtl8723bs: Fix coding style in include headers
Date: Sun, 10 May 2026 20:01:37 +0300	[thread overview]
Message-ID: <agC58XCiXVKdR2Lv@archlinux> (raw)
In-Reply-To: <20260510151735.520685-2-pramod.nexgen@gmail.com>

On Sun, May 10, 2026 at 11:17:21AM -0400, Pramod Maurya wrote:
> Remove multiple blank lines and extern keywords from function
> prototypes in header files as flagged by checkpatch.pl.

Please one patch for one logical change.


> 
> Files changed:
> - rtw_wifi_regd.h: remove multiple blank lines
> - sdio_ops_linux.h: remove multiple blank lines
> - cmd_osdep.h: remove multiple blank lines and extern prototypes
> - rtw_ioctl_set.h: remove multiple blank lines
> - rtl8192c_recv.h: remove multiple blank lines
> - rtl8723b_dm.h: remove multiple blank lines

git diff does this for you perfectly well, why repeat it?


Thanks,
Nikolay

> 
> Signed-off-by: Pramod Maurya <pramod.nexgen@gmail.com>
> ---
>  drivers/staging/rtl8723bs/include/cmd_osdep.h      | 7 +++----
>  drivers/staging/rtl8723bs/include/rtl8192c_recv.h  | 1 -
>  drivers/staging/rtl8723bs/include/rtl8723b_dm.h    | 1 -
>  drivers/staging/rtl8723bs/include/rtw_ioctl_set.h  | 1 -
>  drivers/staging/rtl8723bs/include/rtw_wifi_regd.h  | 1 -
>  drivers/staging/rtl8723bs/include/sdio_ops_linux.h | 1 -
>  6 files changed, 3 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/staging/rtl8723bs/include/cmd_osdep.h b/drivers/staging/rtl8723bs/include/cmd_osdep.h
> index 5506f513dc01..7aaee3b480ba 100644
> --- a/drivers/staging/rtl8723bs/include/cmd_osdep.h
> +++ b/drivers/staging/rtl8723bs/include/cmd_osdep.h
> @@ -7,12 +7,11 @@
>  #ifndef __CMD_OSDEP_H_
>  #define __CMD_OSDEP_H_
>  
> -
>  int rtw_init_cmd_priv(struct	cmd_priv *pcmdpriv);
>  int rtw_init_evt_priv(struct evt_priv *pevtpriv);
> -extern void _rtw_free_evt_priv(struct	evt_priv *pevtpriv);
> -extern void _rtw_free_cmd_priv(struct	cmd_priv *pcmdpriv);
> +void _rtw_free_evt_priv(struct	evt_priv *pevtpriv);
> +void _rtw_free_cmd_priv(struct	cmd_priv *pcmdpriv);
>  int _rtw_enqueue_cmd(struct __queue *queue, struct cmd_obj *obj);
> -extern struct	cmd_obj	*_rtw_dequeue_cmd(struct __queue *queue);
> +struct	cmd_obj	*_rtw_dequeue_cmd(struct __queue *queue);
>  
>  #endif
> diff --git a/drivers/staging/rtl8723bs/include/rtl8192c_recv.h b/drivers/staging/rtl8723bs/include/rtl8192c_recv.h
> index e2e9aa03ffdf..1f86654f0403 100644
> --- a/drivers/staging/rtl8723bs/include/rtl8192c_recv.h
> +++ b/drivers/staging/rtl8723bs/include/rtl8192c_recv.h
> @@ -30,7 +30,6 @@ struct phy_stat {
>  /*  Rx smooth factor */
>  #define	Rx_Smooth_Factor (20)
>  
> -
>  void rtl8192c_translate_rx_signal_stuff(union recv_frame *precvframe, struct phy_stat *pphy_status);
>  void rtl8192c_query_rx_desc_status(union recv_frame *precvframe, struct recv_stat *pdesc);
>  
> diff --git a/drivers/staging/rtl8723bs/include/rtl8723b_dm.h b/drivers/staging/rtl8723bs/include/rtl8723b_dm.h
> index 1d2da5286e7c..50ab7aed079e 100644
> --- a/drivers/staging/rtl8723bs/include/rtl8723b_dm.h
> +++ b/drivers/staging/rtl8723bs/include/rtl8723b_dm.h
> @@ -29,5 +29,4 @@ void rtl8723b_HalDmWatchDog(struct adapter *padapter);
>  void rtl8723b_HalDmWatchDog_in_LPS(struct adapter *padapter);
>  void rtl8723b_hal_dm_in_lps(struct adapter *padapter);
>  
> -
>  #endif
> diff --git a/drivers/staging/rtl8723bs/include/rtw_ioctl_set.h b/drivers/staging/rtl8723bs/include/rtw_ioctl_set.h
> index ab349de733c8..c3a1d1a84f78 100644
> --- a/drivers/staging/rtl8723bs/include/rtw_ioctl_set.h
> +++ b/drivers/staging/rtl8723bs/include/rtw_ioctl_set.h
> @@ -7,7 +7,6 @@
>  #ifndef __RTW_IOCTL_SET_H_
>  #define __RTW_IOCTL_SET_H_
>  
> -
>  typedef u8 NDIS_802_11_PMKID_VALUE[16];
>  
>  u8 rtw_set_802_11_authentication_mode(struct adapter *pdapter, enum ndis_802_11_authentication_mode authmode);
> diff --git a/drivers/staging/rtl8723bs/include/rtw_wifi_regd.h b/drivers/staging/rtl8723bs/include/rtw_wifi_regd.h
> index e611651cb40b..e4d8fe9bf68d 100644
> --- a/drivers/staging/rtl8723bs/include/rtw_wifi_regd.h
> +++ b/drivers/staging/rtl8723bs/include/rtw_wifi_regd.h
> @@ -13,5 +13,4 @@ void rtw_regd_init(struct wiphy *wiphy,
>  					struct regulatory_request *request));
>  void rtw_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request);
>  
> -
>  #endif
> diff --git a/drivers/staging/rtl8723bs/include/sdio_ops_linux.h b/drivers/staging/rtl8723bs/include/sdio_ops_linux.h
> index 18830dd18372..cd67a7201065 100644
> --- a/drivers/staging/rtl8723bs/include/sdio_ops_linux.h
> +++ b/drivers/staging/rtl8723bs/include/sdio_ops_linux.h
> @@ -25,6 +25,5 @@ void sd_write32(struct intf_hdl *pintfhdl, u32 addr, u32 v, s32 *err);
>  s32 _sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
>  s32 sd_write(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, void *pdata);
>  
> -
>  void rtw_sdio_set_irq_thd(struct dvobj_priv *dvobj, void *thd_hdl);
>  #endif
> -- 
> 2.52.0
> 

  reply	other threads:[~2026-05-10 17:01 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-10 15:17 [PATCH 1/2] staging: rtl8723bs: Remove multiple blank lines in rtw_qos.h Pramod Maurya
2026-05-10 15:17 ` [PATCH 2/2] staging: rtl8723bs: Fix coding style in include headers Pramod Maurya
2026-05-10 17:01   ` Nikolay Kulikov [this message]
2026-05-10 17:07     ` Nikolay Kulikov
2026-05-11  8:02   ` Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=agC58XCiXVKdR2Lv@archlinux \
    --to=nikolayof23@gmail.com \
    --cc=giorgitchankvetadze1997@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-staging@lists.linux.dev \
    --cc=pramod.nexgen@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox