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

From: Tomasz Unger

Date: Wed Aug 12 2026 - 12:18:48 EST


Replace space-then-tab with a single tab between field type and
name for EfuseUsedPercentage, EfuseUsedBytes, sdio_himr,
sdio_hisr, SdioTxFIFOFreePage, SdioTxOQTMaxFreeSpace,
SdioTxOQTFreeSpace, SdioRxFIFOCnt, SdioRxFIFOSize and
sdio_tx_max_len in struct hal_com_data, matching the alignment
style used by the surrounding fields.

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.

Two pre-existing issues on lines 252-253 (CODE_INDENT) and 382
(line length) are unrelated to this whitespace-only change and
are left untouched; the line-382 length is unchanged by this
patch (124 columns before and after when tabs are expanded).

Signed-off-by: Tomasz Unger <tomasz.unger@xxxxxxxx>
---
drivers/staging/rtl8723bs/include/hal_data.h | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/staging/rtl8723bs/include/hal_data.h b/drivers/staging/rtl8723bs/include/hal_data.h
index 3a93ac312ded..0712baa78413 100644
--- a/drivers/staging/rtl8723bs/include/hal_data.h
+++ b/drivers/staging/rtl8723bs/include/hal_data.h
@@ -213,8 +213,8 @@ struct hal_com_data {
u8 bDisableSWChannelPlan; /* flag of disable software change channel plan */

bool EepromOrEfuse;
- u8 EfuseUsedPercentage;
- u16 EfuseUsedBytes;
+ u8 EfuseUsedPercentage;
+ u16 EfuseUsedBytes;
struct efuse_hal EfuseHal;

/* 3 [2.4G] */
@@ -364,22 +364,22 @@ struct hal_com_data {

enum rt_ampdu_burst AMPDUBurstMode; /* 92C maybe not use, but for compile successfully */

- u32 sdio_himr;
- u32 sdio_hisr;
+ u32 sdio_himr;
+ u32 sdio_hisr;

/* SDIO Tx FIFO related. */
/* HIQ, MID, LOW, PUB free pages; padapter->xmitpriv.free_txpg */
- u8 SdioTxFIFOFreePage[SDIO_TX_FREE_PG_QUEUE];
+ u8 SdioTxFIFOFreePage[SDIO_TX_FREE_PG_QUEUE];
spinlock_t SdioTxFIFOFreePageLock;
- u8 SdioTxOQTMaxFreeSpace;
- u8 SdioTxOQTFreeSpace;
+ u8 SdioTxOQTMaxFreeSpace;
+ u8 SdioTxOQTFreeSpace;


/* SDIO Rx FIFO related. */
- u8 SdioRxFIFOCnt;
- u16 SdioRxFIFOSize;
+ u8 SdioRxFIFOCnt;
+ u16 SdioRxFIFOSize;

- u32 sdio_tx_max_len[SDIO_MAX_TX_QUEUE];/* H, N, L, used for sdio tx aggregation max length per queue */
+ u32 sdio_tx_max_len[SDIO_MAX_TX_QUEUE];/* H, N, L, used for sdio tx aggregation max length per queue */

struct dm_priv dmpriv;
struct dm_odm_t odmpriv;

---
base-commit: db2ddb87143519e20a95aa36c60b36107b736a58
change-id: 20260812-rtl8723bs-space-before-tab-haldata-964c0ed61e08

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