public inbox for linux-staging@lists.linux.dev
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Nikolay Kulikov <nikolayof23@gmail.com>
Cc: linux-staging@lists.linux.dev
Subject: Re: [PATCH 11/11] staging: rtl8723bs: rename DisableInterrupt8723BSdio() to snake_case
Date: Sun, 26 Apr 2026 22:08:55 +0200	[thread overview]
Message-ID: <2026042624-shifty-overplay-3b53@gregkh> (raw)
In-Reply-To: <20260419072034.19824-12-nikolayof23@gmail.com>

On Sun, Apr 19, 2026 at 10:19:37AM +0300, Nikolay Kulikov wrote:
> Rename function DisableInterrupt8723BSdio() to
> rtw_sdio_disable_interrupt() and format its description to comply with
> Linux kernel coding style.
> Declare this function without 'extern' prototype in the .h file to fix
> checkpatch.pl warning.
> 
> Signed-off-by: Nikolay Kulikov <nikolayof23@gmail.com>
> ---
>  drivers/staging/rtl8723bs/hal/sdio_ops.c     | 17 +++++++----------
>  drivers/staging/rtl8723bs/include/sdio_ops.h |  2 +-
>  drivers/staging/rtl8723bs/os_dep/os_intfs.c  |  2 +-
>  drivers/staging/rtl8723bs/os_dep/sdio_intf.c |  4 ++--
>  4 files changed, 11 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/staging/rtl8723bs/hal/sdio_ops.c b/drivers/staging/rtl8723bs/hal/sdio_ops.c
> index 0d8d0935e4a2..a7713acccce9 100644
> --- a/drivers/staging/rtl8723bs/hal/sdio_ops.c
> +++ b/drivers/staging/rtl8723bs/hal/sdio_ops.c
> @@ -742,16 +742,13 @@ void rtw_sdio_enable_interrupt(struct adapter *adapter)
>  	rtw_write8(adapter, REG_C2HEVT_CLEAR, C2H_EVT_HOST_CLOSE);
>  }
>  
> -/*  */
> -/*	Description: */
> -/*		Disable SDIO Host IMR configuration to mask unnecessary interrupt service. */
> -/*  */
> -/*	Assumption: */
> -/*		Using SDIO Local register ONLY for configuration. */
> -/*  */
> -/*	Created by Roger, 2011.02.11. */
> -/*  */
> -void DisableInterrupt8723BSdio(struct adapter *adapter)
> +/*
> + * Disable SDIO Host IMR configuration to mask unnecessary interrupt service.
> + *
> + * Assumption:
> + *	Using SDIO Local register ONLY for configuration.
> + */
> +void rtw_sdio_disable_interrupt(struct adapter *adapter)
>  {
>  	__le32 himr;
>  
> diff --git a/drivers/staging/rtl8723bs/include/sdio_ops.h b/drivers/staging/rtl8723bs/include/sdio_ops.h
> index 7bb4b2047cc1..13f13076bc16 100644
> --- a/drivers/staging/rtl8723bs/include/sdio_ops.h
> +++ b/drivers/staging/rtl8723bs/include/sdio_ops.h
> @@ -28,7 +28,7 @@ extern u8 CheckIPSStatus(struct adapter *padapter);
>  extern void InitInterrupt8723BSdio(struct adapter *padapter);
>  extern void InitSysInterrupt8723BSdio(struct adapter *padapter);
>  void rtw_sdio_enable_interrupt(struct adapter *padapter);
> -extern void DisableInterrupt8723BSdio(struct adapter *padapter);
> +void rtw_sdio_disable_interrupt(struct adapter *padapter);
>  extern u8 HalQueryTxBufferStatus8723BSdio(struct adapter *padapter);
>  extern void HalQueryTxOQTBufferStatus8723BSdio(struct adapter *padapter);
>  #endif /*  !__SDIO_OPS_H__ */
> diff --git a/drivers/staging/rtl8723bs/os_dep/os_intfs.c b/drivers/staging/rtl8723bs/os_dep/os_intfs.c
> index f9995e02485e..b240b8285995 100644
> --- a/drivers/staging/rtl8723bs/os_dep/os_intfs.c
> +++ b/drivers/staging/rtl8723bs/os_dep/os_intfs.c
> @@ -1140,7 +1140,7 @@ static int rtw_resume_process_normal(struct adapter *padapter)
>  		if (ret)
>  			goto exit;
>  	}
> -	DisableInterrupt8723BSdio(padapter);
> +	rtw_sdio_disable_interrupt(padapter);
>  	/* if (sdio_alloc_irq(adapter_to_dvobj(padapter)) != _SUCCESS) */
>  	if ((padapter->intf_alloc_irq) && (padapter->intf_alloc_irq(adapter_to_dvobj(padapter)) != _SUCCESS)) {
>  		ret = -1;
> diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
> index f6fa51f952e0..d6e3a74f2edd 100644
> --- a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
> +++ b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
> @@ -212,7 +212,7 @@ static void sd_intf_stop(struct adapter *padapter)
>  	if (!padapter)
>  		return;
>  
> -	DisableInterrupt8723BSdio(padapter);
> +	rtw_sdio_disable_interrupt(padapter);
>  }
>  
>  
> @@ -281,7 +281,7 @@ static struct adapter *rtw_sdio_if1_init(struct dvobj_priv *dvobj, const struct
>  	/*  set mac addr */
>  	rtw_macaddr_cfg(&psdio->func->dev, padapter->eeprompriv.mac_addr);
>  
> -	DisableInterrupt8723BSdio(padapter);
> +	rtw_sdio_disable_interrupt(padapter);
>  
>  	status = _SUCCESS;
>  
> -- 
> 2.53.0
> 
> 

This one did not apply as well.  Can you rebase those 2 patches on my
staging-next branch when it shows up on kernel.org tomorrow, and resend
them?

thanks,

greg k-h

      reply	other threads:[~2026-04-27  3:51 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-19  7:19 [PATCH 00/11] staging: rtl8723bs: cleanup hal/hal_intf.c Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 01/11] staging: rtl8723bs: remove wrapper rtw_hal_chip_configure() Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 02/11] staging: rtl8723bs: remove wrapper rtw_hal_read_chip_info() Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 03/11] staging: rtl8723bs: remove wrapper rtw_hal_read_chip_version() Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 04/11] staging: rtl8723bs: remove wrapper rtw_hal_def_value_init() Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 05/11] staging: rtl8723bs: remove wrapper rtw_hal_free_data() Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 06/11] staging: rtl8723bs: remove wrapper rtw_hal_dm_init() Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 07/11] staging: rtl8723bs: remove wrapper rtw_hal_enable_interrupt() Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 08/11] staging: rtl8723bs: remove wrapper rtw_hal_disable_interrupt() Nikolay Kulikov
2026-04-26 20:07   ` Greg KH
2026-04-19  7:19 ` [PATCH 09/11] staging: rtl8723bs: rename ReadAdapterInfo8723BS() to snake_case Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 10/11] staging: rtl8723bs: rename EnableInterrupt8723BSdio() " Nikolay Kulikov
2026-04-19  7:19 ` [PATCH 11/11] staging: rtl8723bs: rename DisableInterrupt8723BSdio() " Nikolay Kulikov
2026-04-26 20:08   ` Greg KH [this message]

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=2026042624-shifty-overplay-3b53@gregkh \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-staging@lists.linux.dev \
    --cc=nikolayof23@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