]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
staging: rtl8723bs: fix unbalanced braces in if/else statements
authorSiwanan Bungtong <horstaufmental@gmail.com>
Fri, 1 May 2026 20:53:36 +0000 (03:53 +0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 4 May 2026 14:52:54 +0000 (16:52 +0200)
Fix inconsistent brace usage in if/else blocks to improve readability
and avoid misleading indentation.

No functional changes.

Signed-off-by: Siwanan Bungtong <horstaufmental@gmail.com>
Reviewed-by: Nikolay Kulikov <nikolayof23@gmail.com>
Link: https://patch.msgid.link/20260501205336.230955-1-horstaufmental@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/HalBtc8723b1Ant.c

index 9bef096164fa12dbb4a144c9663a492247a48831..622970c7fcfa860f62d3ad39bf10b11041d55ce6 100644 (file)
@@ -793,8 +793,9 @@ static void halbtc8723b1ant_SetAntPath(
                        /* Use H2C to set GNT_BT to HIGH */
                        H2C_Parameter[0] = 1;
                        pBtCoexist->fBtcFillH2c(pBtCoexist, 0x6E, 1, H2C_Parameter);
-               } else /*  set grant_bt to high */
+               } else /*  set grant_bt to high */
                        pBtCoexist->fBtcWrite1Byte(pBtCoexist, 0x765, 0x18);
+               }
 
                /* set wlan_act control by PTA */
                pBtCoexist->fBtcWrite1Byte(pBtCoexist, 0x76e, 0x4);
@@ -810,8 +811,9 @@ static void halbtc8723b1ant_SetAntPath(
                        /* Use H2C to set GNT_BT to HIGH */
                        H2C_Parameter[0] = 1;
                        pBtCoexist->fBtcFillH2c(pBtCoexist, 0x6E, 1, H2C_Parameter);
-               } else /*  set grant_bt to high */
+               } else /*  set grant_bt to high */
                        pBtCoexist->fBtcWrite1Byte(pBtCoexist, 0x765, 0x18);
+               }
 
                /* set wlan_act to always low */
                pBtCoexist->fBtcWrite1Byte(pBtCoexist, 0x76e, 0x4);
@@ -1856,8 +1858,9 @@ static void halbtc8723b1ant_ActionWifiConnected(struct btc_coexist *pBtCoexist)
                        halbtc8723b1ant_PowerSaveState(pBtCoexist, BTC_PS_WIFI_NATIVE, 0x0, 0x0);
                else
                        halbtc8723b1ant_PowerSaveState(pBtCoexist, BTC_PS_LPS_ON, 0x50, 0x4);
-       } else
+       } else {
                halbtc8723b1ant_PowerSaveState(pBtCoexist, BTC_PS_WIFI_NATIVE, 0x0, 0x0);
+       }
 
        /*  tdma and coex table */
        if (!bWifiBusy) {
@@ -2053,8 +2056,9 @@ static void halbtc8723b1ant_RunCoexistMechanism(struct btc_coexist *pBtCoexist)
                                halbtc8723b1ant_ActionWifiNotConnectedAssoAuth(pBtCoexist);
                } else
                        halbtc8723b1ant_ActionWifiNotConnected(pBtCoexist);
-       } else /*  wifi LPS/Busy */
+       } else /*  wifi LPS/Busy */
                halbtc8723b1ant_ActionWifiConnected(pBtCoexist);
+       }
 }
 
 static void halbtc8723b1ant_InitCoexDm(struct btc_coexist *pBtCoexist)
@@ -2089,8 +2093,9 @@ static void halbtc8723b1ant_InitHwConfig(
        if (bWifiOnly) {
                halbtc8723b1ant_SetAntPath(pBtCoexist, BTC_ANT_PATH_WIFI, true, false);
                halbtc8723b1ant_PsTdma(pBtCoexist, FORCE_EXEC, false, 9);
-       } else
+       } else {
                halbtc8723b1ant_SetAntPath(pBtCoexist, BTC_ANT_PATH_BT, true, false);
+       }
 
        /*  PTA parameter */
        halbtc8723b1ant_CoexTableWithType(pBtCoexist, FORCE_EXEC, 0);