Staging: rtl8192e: Rename variable bInitState
authorTree Davies <tdavies@darkphysics.net>
Sat, 23 Dec 2023 01:59:41 +0000 (17:59 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 23 Dec 2023 13:10:53 +0000 (14:10 +0100)
Rename variable bInitState to init_state to fix checkpatch
warning Avoid CamelCase.

Signed-off-by: Tree Davies <tdavies@darkphysics.net>
Link: https://lore.kernel.org/r/20231223015942.418263-20-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtllib.h
drivers/staging/rtl8192e/rtllib_softmac.c

index 4a175f0146cfd89341f11dcae8f4f41fcad8df30..1c32c37818595da928fc09e5fa849d46536ffb83 100644 (file)
@@ -1677,8 +1677,8 @@ void rtllib_sta_ps_send_pspoll_frame(struct rtllib_device *ieee);
 void rtllib_start_protocol(struct rtllib_device *ieee);
 void rtllib_stop_protocol(struct rtllib_device *ieee);
 
-void rtllib_EnableNetMonitorMode(struct net_device *dev, bool bInitState);
-void rtllib_DisableNetMonitorMode(struct net_device *dev, bool bInitState);
+void rtllib_EnableNetMonitorMode(struct net_device *dev, bool init_state);
+void rtllib_DisableNetMonitorMode(struct net_device *dev, bool init_state);
 
 void rtllib_softmac_stop_protocol(struct rtllib_device *ieee);
 void rtllib_softmac_start_protocol(struct rtllib_device *ieee);
index e6a2e70b9e91c1235bf0047b1206a1af1ffb69b2..3c6cc3924634a705d0c596f737d660ed173fa227 100644 (file)
@@ -349,26 +349,26 @@ static inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee)
 
 /* Enables network monitor mode, all rx packets will be received. */
 void rtllib_EnableNetMonitorMode(struct net_device *dev,
-               bool bInitState)
+               bool init_state)
 {
        struct rtllib_device *ieee = netdev_priv_rsl(dev);
 
        netdev_info(dev, "========>Enter Monitor Mode\n");
 
-       ieee->AllowAllDestAddrHandler(dev, true, !bInitState);
+       ieee->AllowAllDestAddrHandler(dev, true, !init_state);
 }
 
 /* Disables network monitor mode. Only packets destinated to
  * us will be received.
  */
 void rtllib_DisableNetMonitorMode(struct net_device *dev,
-               bool bInitState)
+               bool init_state)
 {
        struct rtllib_device *ieee = netdev_priv_rsl(dev);
 
        netdev_info(dev, "========>Exit Monitor Mode\n");
 
-       ieee->AllowAllDestAddrHandler(dev, false, !bInitState);
+       ieee->AllowAllDestAddrHandler(dev, false, !init_state);
 }
 
 static void rtllib_send_probe(struct rtllib_device *ieee)