[PATCH] staging: rtl8723bs: fix space before tab in rtw_mlme_ext.h
From: Tomasz Unger
Date: Wed Aug 12 2026 - 15:52:30 EST
Replace space-then-tab with a single tab between field type and
name for ChannelNum in struct rt_channel_info and
chan_scan_time in struct mlme_ext_priv, 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.
Signed-off-by: Tomasz Unger <tomasz.unger@xxxxxxxx>
---
drivers/staging/rtl8723bs/include/rtw_mlme_ext.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8723bs/include/rtw_mlme_ext.h b/drivers/staging/rtl8723bs/include/rtw_mlme_ext.h
index cb23c6939bfc..e26517f942a7 100644
--- a/drivers/staging/rtl8723bs/include/rtw_mlme_ext.h
+++ b/drivers/staging/rtl8723bs/include/rtw_mlme_ext.h
@@ -322,7 +322,7 @@ struct mlme_ext_info {
/* The channel information about this channel including joining, scanning, and power constraints. */
struct rt_channel_info {
- u8 ChannelNum; /* The channel number. */
+ u8 ChannelNum; /* The channel number. */
enum rt_scan_type ScanType; /* Scan type such as passive or active scan. */
};
@@ -390,7 +390,7 @@ struct mlme_ext_priv {
struct timer_list link_timer;
struct timer_list sa_query_timer;
/* struct timer_list ADDBA_timer; */
- u16 chan_scan_time;
+ u16 chan_scan_time;
unsigned long last_scan_time;
u8 scan_abort;
u8 tx_rate; /* TXRATE when USERATE is set. */
---
base-commit: db2ddb87143519e20a95aa36c60b36107b736a58
change-id: 20260812-rtl8723bs-space-before-tab-mlmeext-2341dcb88491
Best regards,
--
Tomasz Unger <tomasz.unger@xxxxxxxx>