[PATCH] staging: rtl8723bs: fix space before tab in hal_phy.h

From: Tomasz Unger

Date: Wed Aug 12 2026 - 15:42:58 EST


Replace space-then-tab with a single tab between field type and
name for Para1, Para2 and msDelay in struct SwChnlCmd, matching
the alignment style used by the CmdID field in the same struct.

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/include/hal_phy.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/rtl8723bs/include/hal_phy.h b/drivers/staging/rtl8723bs/include/hal_phy.h
index abc0f27fdaa4..03d20e54d269 100644
--- a/drivers/staging/rtl8723bs/include/hal_phy.h
+++ b/drivers/staging/rtl8723bs/include/hal_phy.h
@@ -63,9 +63,9 @@ enum SwChnlCmdID {

struct SwChnlCmd {
enum SwChnlCmdID CmdID;
- u32 Para1;
- u32 Para2;
- u32 msDelay;
+ u32 Para1;
+ u32 Para2;
+ u32 msDelay;
};

/*--------------------------Exported Function prototype---------------------*/

---
base-commit: db2ddb87143519e20a95aa36c60b36107b736a58
change-id: 20260812-rtl8723bs-space-before-tab-halphy-48d27ee9941c

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