staging: rtl8192e: Rename bConnectBySSID
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Fri, 9 Sep 2022 19:21:20 +0000 (21:21 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 11 Sep 2022 11:58:22 +0000 (13:58 +0200)
Rename variable bConnectBySSID to connect_by_ssid to avoid CamelCase which
is not accepted by checkpatch.pl.

Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/2b193be93598348994b1f890b6dc5c2ffb84a9b6.1662402870.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/rtl_core.c

index e904a87..b1f5a63 100644 (file)
@@ -138,7 +138,7 @@ bool rtl92e_set_rf_state(struct net_device *dev,
        struct r8192_priv *priv = rtllib_priv(dev);
        struct rtllib_device *ieee = priv->rtllib;
        bool action_allowed = false;
-       bool                    bConnectBySSID = false;
+       bool connect_by_ssid = false;
        enum rt_rf_power_state rtState;
        u16                     RFWaitCounter = 0;
        unsigned long flag;
@@ -181,7 +181,7 @@ bool rtl92e_set_rf_state(struct net_device *dev,
 
                        if (rtState == eRfOff &&
                            change_source >= RF_CHANGE_BY_HW)
-                               bConnectBySSID = true;
+                               connect_by_ssid = true;
                }
                break;
 
@@ -217,7 +217,7 @@ bool rtl92e_set_rf_state(struct net_device *dev,
        if (action_allowed) {
                rtl92e_set_rf_power_state(dev, state_to_set);
                if (state_to_set == eRfOn) {
-                       if (bConnectBySSID && priv->blinked_ingpio) {
+                       if (connect_by_ssid && priv->blinked_ingpio) {
                                schedule_delayed_work(
                                         &ieee->associate_procedure_wq, 0);
                                priv->blinked_ingpio = false;