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

From: Tomasz Unger

Date: Thu Aug 13 2026 - 11:51:28 EST


Replace space-then-tab with a single tab between variable type
and name for rfPath in Hal_EfuseParseTxPowerInfo_8723B(),
matching the alignment style used by the surrounding local
variables.

Verified with checkpatch.pl that the 'please, no space before
tabs' warning was present before this change and is no longer
reported for this line after it.

Signed-off-by: Tomasz Unger <tomasz.unger@xxxxxxxx>
---
drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c b/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c
index bcaf63b2893c..a2694495194b 100644
--- a/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c
+++ b/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c
@@ -1310,7 +1310,7 @@ void Hal_EfuseParseTxPowerInfo_8723B(
{
struct hal_com_data *pHalData = GET_HAL_DATA(padapter);
struct TxPowerInfo24G pwrInfo24G;
- u8 rfPath, ch, TxCount = 1;
+ u8 rfPath, ch, TxCount = 1;

Hal_ReadPowerValueFromPROM_8723B(padapter, &pwrInfo24G, PROMContent, AutoLoadFail);
for (rfPath = 0 ; rfPath < MAX_RF_PATH ; rfPath++) {

---
base-commit: db2ddb87143519e20a95aa36c60b36107b736a58
change-id: 20260813-rtl8723bs-space-before-tab-halinit-2e9456e7fc72

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