[PATCH] staging: rtl8723bs: fix space before tab in HalBtc8723b2Ant.c

From: Tomasz Unger

Date: Thu Aug 13 2026 - 11:33:45 EST


Replace space-then-tab with a single tab between variable type
and name for the local H2C_Parameter array declarations across
several functions, and for btInfo and rspSource in
EXhalbtc8723b2ant_BtInfoNotify().

Verified with checkpatch.pl that the 'please, no space before
tabs' warnings were present before this change and are no
longer reported for these lines after it.

Signed-off-by: Tomasz Unger <tomasz.unger@xxxxxxxx>
---
drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c b/drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c
index 6da6940c9043..7c4a050b32e5 100644
--- a/drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c
+++ b/drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.c
@@ -181,7 +181,7 @@ static void halbtc8723b2ant_LimitedRx(

static void halbtc8723b2ant_QueryBtInfo(struct btc_coexist *pBtCoexist)
{
- u8 H2C_Parameter[1] = {0};
+ u8 H2C_Parameter[1] = {0};

pCoexSta->bC2hBtInfoReqSent = true;

@@ -417,7 +417,7 @@ static void halbtc8723b2ant_SetFwDacSwingLevel(
struct btc_coexist *pBtCoexist, u8 dacSwingLvl
)
{
- u8 H2C_Parameter[1] = {0};
+ u8 H2C_Parameter[1] = {0};

/* There are several type of dacswing */
/* 0x18/ 0x10/ 0xc/ 0x8/ 0x4/ 0x6 */
@@ -430,7 +430,7 @@ static void halbtc8723b2ant_SetFwDecBtPwr(
struct btc_coexist *pBtCoexist, u8 decBtPwrLvl
)
{
- u8 H2C_Parameter[1] = {0};
+ u8 H2C_Parameter[1] = {0};

H2C_Parameter[0] = decBtPwrLvl;

@@ -504,7 +504,7 @@ static void halbtc8723b2ant_SetSwPenaltyTxRateAdaptive(
struct btc_coexist *pBtCoexist, bool bLowPenaltyRa
)
{
- u8 H2C_Parameter[6] = {0};
+ u8 H2C_Parameter[6] = {0};

H2C_Parameter[0] = 0x6; /* opCode, 0x6 = Retry_Penalty */

@@ -743,7 +743,7 @@ static void halbtc8723b2ant_SetFwIgnoreWlanAct(
struct btc_coexist *pBtCoexist, bool bEnable
)
{
- u8 H2C_Parameter[1] = {0};
+ u8 H2C_Parameter[1] = {0};

if (bEnable)
H2C_Parameter[0] |= BIT(0); /* function enable */
@@ -775,7 +775,7 @@ static void halbtc8723b2ant_SetFwPstdma(
u8 byte5
)
{
- u8 H2C_Parameter[5] = {0};
+ u8 H2C_Parameter[5] = {0};

H2C_Parameter[0] = byte1;
H2C_Parameter[1] = byte2;
@@ -824,7 +824,7 @@ static void halbtc8723b2ant_SetAntPath(
u32 fwVer = 0, u4Tmp = 0;
bool bPgExtSwitch = false;
bool bUseExtSwitch = false;
- u8 H2C_Parameter[2] = {0};
+ u8 H2C_Parameter[2] = {0};

pBtCoexist->fBtcGet(pBtCoexist, BTC_GET_BL_EXT_SWITCH, &bPgExtSwitch);
pBtCoexist->fBtcGet(pBtCoexist, BTC_GET_U4_WIFI_FW_VER, &fwVer); /* [31:16]=fw ver, [15:0]=fw sub ver */
@@ -2460,8 +2460,8 @@ void EXhalbtc8723b2ant_BtInfoNotify(
struct btc_coexist *pBtCoexist, u8 *tmpBuf, u8 length
)
{
- u8 btInfo = 0;
- u8 i, rspSource = 0;
+ u8 btInfo = 0;
+ u8 i, rspSource = 0;
bool bBtBusy = false, bLimitedDig = false;
bool bWifiConnected = false;


---
base-commit: db2ddb87143519e20a95aa36c60b36107b736a58
change-id: 20260813-rtl8723bs-space-before-tab-btc2ant-f506e3b9dd5b

Best regards,
--
Tomasz Unger <tomasz.unger@xxxxxxxx>