diff options
| author | Moksh Panicker <mokshpanicker.7@gmail.com> | 2026-05-04 14:28:12 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2026-05-04 16:58:44 +0200 |
| commit | 81f55766523e5293604cb96c5e98d10da345ff33 (patch) | |
| tree | 5f4455eb66d6ec5bbc7c3b23db5ebb2176226381 | |
| parent | 9669767409c66ff434a74c20bc1cbdf162779dd0 (diff) | |
| download | linux-81f55766523e5293604cb96c5e98d10da345ff33.tar.gz linux-81f55766523e5293604cb96c5e98d10da345ff33.zip | |
staging: rtl8723bs: remove blank line after open brace in hal_com.c
Remove unnecessary blank line after the opening brace of a for loop.
This fixes the following checkpatch.pl warning:
CHECK: Blank lines aren't necessary after an open brace '{'
Signed-off-by: Moksh Panicker <mokshpanicker.7@gmail.com>
Link: https://patch.msgid.link/20260504142812.21964-4-mokshpanicker.7@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/rtl8723bs/hal/hal_com.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723bs/hal/hal_com.c b/drivers/staging/rtl8723bs/hal/hal_com.c index 7fd6e0249390..25686aeb073b 100644 --- a/drivers/staging/rtl8723bs/hal/hal_com.c +++ b/drivers/staging/rtl8723bs/hal/hal_com.c @@ -252,7 +252,6 @@ void HalSetBrateCfg(struct adapter *Adapter, u8 *mBratesOS, u16 *pBrateCfg) u8 i, is_brate, brate; for (i = 0; i < NDIS_802_11_LENGTH_RATES_EX; i++) { - is_brate = mBratesOS[i] & IEEE80211_BASIC_RATE_MASK; brate = mBratesOS[i] & 0x7f; |
