[PATCH] staging: rtl8723bs: fix space before tab in HalPhyRf_8723B.c
From: Tomasz Unger
Date: Thu Aug 13 2026 - 11:44:59 EST
Replace space-then-tab with a single tab between variable type
and name for GNT_BT_default in PHY_IQCalibrate_8723B() and
timeout in PHY_LCCalibrate_8723B(), matching the alignment
style used by the surrounding local variables.
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/HalPhyRf_8723B.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8723bs/hal/HalPhyRf_8723B.c b/drivers/staging/rtl8723bs/hal/HalPhyRf_8723B.c
index 70b68f473d58..7ba4684dd8d9 100644
--- a/drivers/staging/rtl8723bs/hal/HalPhyRf_8723B.c
+++ b/drivers/staging/rtl8723bs/hal/HalPhyRf_8723B.c
@@ -1554,7 +1554,7 @@ void PHY_IQCalibrate_8723B(
rOFDM0_RxIQExtAnta
};
/* u32 Path_SEL_BB = 0; */
- u32 GNT_BT_default;
+ u32 GNT_BT_default;
if (!ODM_CheckPowerStatus(padapter))
return;
@@ -1745,7 +1745,7 @@ void PHY_IQCalibrate_8723B(
void PHY_LCCalibrate_8723B(struct dm_odm_t *pDM_Odm)
{
bool bSingleTone = false, bCarrierSuppression = false;
- u32 timeout = 2000, timecount = 0;
+ u32 timeout = 2000, timecount = 0;
if (!(pDM_Odm->SupportAbility & ODM_RF_CALIBRATION))
return;
---
base-commit: db2ddb87143519e20a95aa36c60b36107b736a58
change-id: 20260813-rtl8723bs-space-before-tab-halphyrf-92cdbb67cc06
Best regards,
--
Tomasz Unger <tomasz.unger@xxxxxxxx>