public inbox for linux-staging@lists.linux.dev
 help / color / mirror / Atom feed
From: Luka Gejak <luka.gejak@linux.dev>
To: Josh Hesketh <josh.hesketh@gmail.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Michael Straube <straube.linux@gmail.com>,
	linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org,
	luka.gejak@linux.dev
Subject: Re: [PATCH v2 2/3] staging: rtl8723bs: fix whitespace issues in sdio_halinit.c
Date: Sun, 12 Apr 2026 18:05:32 +0200	[thread overview]
Message-ID: <0B9DF20F-F251-4CE4-9D54-CF7F31966B65@linux.dev> (raw)
In-Reply-To: <20260412150633.12071-2-josh.hesketh@gmail.com>

On April 12, 2026 5:06:32 PM GMT+02:00, Josh Hesketh <josh.hesketh@gmail.com> wrote:
>Remove spaces before tabs in comments and fix extra spaces to
>address checkpatch warnings.
>
>Signed-off-by: Josh Hesketh <josh.hesketh@gmail.com>
>---
>v2:
> - Rebased on staging-next
> - Split from original patch 1/2
> drivers/staging/rtl8723bs/hal/sdio_halinit.c | 32 ++++++++++----------
> 1 file changed, 16 insertions(+), 16 deletions(-)
>
>diff --git a/drivers/staging/rtl8723bs/hal/sdio_halinit.c b/drivers/staging/rtl8723bs/hal/sdio_halinit.c
>index 4d74b14c3cd4..4a4f6b03253a 100644
>--- a/drivers/staging/rtl8723bs/hal/sdio_halinit.c
>+++ b/drivers/staging/rtl8723bs/hal/sdio_halinit.c
>@@ -822,7 +822,7 @@ u32 rtl8723bs_hal_init(struct adapter *padapter)
> 
> /*  */
> /*  Description: */
>-/* 	RTL8723e card disable power sequence v003 which suggested by Scott. */
>+/*	RTL8723e card disable power sequence v003 which suggested by Scott. */
> /*  */
> /*  First created by tynli. 2011.01.28. */
> /*  */
>@@ -834,7 +834,7 @@ static void CardDisableRTL8723BSdio(struct adapter *padapter)
> 	/*  Run LPS WL RFOFF flow */
> 	HalPwrSeqCmdParsing(padapter, PWR_CUT_ALL_MSK, PWR_FAB_ALL_MSK, PWR_INTF_SDIO_MSK, rtl8723B_enter_lps_flow);
> 
>-	/* 	==== Reset digital sequence   ====== */
>+	/*	==== Reset digital sequence   ====== */
> 
> 	val = rtw_read8(padapter, REG_MCUFWDL);
> 	if ((val & RAM_DL_SEL) && padapter->bFWReady) /* 8051 RAM code */
>@@ -857,7 +857,7 @@ static void CardDisableRTL8723BSdio(struct adapter *padapter)
> 	val |= BIT(0);
> 	rtw_write8(padapter, REG_RSV_CTRL + 1, val);
> 
>-	/* 	==== Reset digital sequence end ====== */
>+	/*	==== Reset digital sequence end ====== */
> 
> 	bMacPwrCtrlOn = false;	/*  Disable CMD53 R/W */
> 	rtw_hal_set_hwreg(padapter, HW_VAR_APFM_ON_MAC, &bMacPwrCtrlOn);
>@@ -959,13 +959,13 @@ void rtl8723bs_interface_configure(struct adapter *padapter)
> }
> 
> /*  */
>-/* 	Description: */
>-/* 		We should set Efuse cell selection to WiFi cell in default. */
>+/*	Description: */
>+/*		We should set Efuse cell selection to WiFi cell in default. */
> /*  */
>-/* 	Assumption: */
>-/* 		PASSIVE_LEVEL */
>+/*	Assumption: */
>+/*		PASSIVE_LEVEL */
> /*  */
>-/* 	Added by Roger, 2010.11.23. */
>+/*	Added by Roger, 2010.11.23. */
> /*  */
> static void _EfuseCellSel(struct adapter *padapter)
> {
>@@ -1051,7 +1051,7 @@ static void _ReadEfuseInfo8723BS(struct adapter *padapter)
> static void _ReadPROMContent(struct adapter *padapter)
> {
> 	struct eeprom_priv *pEEPROM = GET_EEPROM_EFUSE_PRIV(padapter);
>-	u8 	eeValue;
>+	u8 eeValue;
> 
> 	eeValue = rtw_read8(padapter, REG_9346CR);
> 	/*  To check system boot selection. */
>@@ -1062,11 +1062,11 @@ static void _ReadPROMContent(struct adapter *padapter)
> }
> 
> /*  */
>-/* 	Description: */
>-/* 		Read HW adapter information by E-Fuse or EEPROM according CR9346 reported. */
>+/*	Description: */
>+/*		Read HW adapter information by E-Fuse or EEPROM according CR9346 reported. */
> /*  */
>-/* 	Assumption: */
>-/* 		PASSIVE_LEVEL (SDIO interface) */
>+/*	Assumption: */
>+/*		PASSIVE_LEVEL (SDIO interface) */
> /*  */
> /*  */
> static s32 _ReadAdapterInfo8723BS(struct adapter *padapter)
>@@ -1179,14 +1179,14 @@ void SetHwRegWithBuf8723B(struct adapter *padapter, u8 variable, u8 *pbuf, int l
> }
> 
> /*  */
>-/* 	Description: */
>-/* 		Query setting of specified variable. */
>+/*	Description: */
>+/*		Query setting of specified variable. */
> /*  */
> u8 GetHalDefVar8723BSDIO(
> 	struct adapter *Adapter, enum hal_def_variable eVariable, void *pValue
> )
> {
>-	u8 	bResult = _SUCCESS;
>+	u8 bResult = _SUCCESS;
> 
> 	switch (eVariable) {
> 	case HAL_DEF_IS_SUPPORT_ANT_DIV:

LGTM.
Reviewed-by: Luka Gejak <luka.gejak@linux.dev>

  reply	other threads:[~2026-04-12 16:05 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-12 15:06 [PATCH v2 1/3] staging: rtl8723bs: remove commented out dead code in sdio_halinit.c Josh Hesketh
2026-04-12 15:06 ` [PATCH v2 2/3] staging: rtl8723bs: fix whitespace issues " Josh Hesketh
2026-04-12 16:05   ` Luka Gejak [this message]
2026-04-12 15:06 ` [PATCH v2 3/3] staging: rtl8723bs: remove unnecessary else after return " Josh Hesketh
2026-04-12 16:06   ` Luka Gejak
2026-04-12 16:13     ` Luka Gejak
2026-04-12 16:05 ` [PATCH v2 1/3] staging: rtl8723bs: remove commented out dead code " Luka Gejak
2026-04-12 16:12   ` Luka Gejak

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=0B9DF20F-F251-4CE4-9D54-CF7F31966B65@linux.dev \
    --to=luka.gejak@linux.dev \
    --cc=gregkh@linuxfoundation.org \
    --cc=josh.hesketh@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-staging@lists.linux.dev \
    --cc=straube.linux@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