Staging: rtl8192e: Rename variable bAwakePktSent
authorTree Davies <tdavies@darkphysics.net>
Sat, 6 Jan 2024 05:55:41 +0000 (21:55 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 24 Jan 2024 18:17:09 +0000 (10:17 -0800)
Rename variable bAwakePktSent to awake_pkt_sent to fix checkpatch
warning Avoid CamelCase.

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

index 49c5d308097ae70bf52bda507b0c85da71014861..d0898df6053d6718a2d25c5c4d35a7ae6397e06d 100644 (file)
@@ -1256,7 +1256,7 @@ static short _rtl92e_tx(struct net_device *dev, struct sk_buff *skb)
        int   idx;
        u32 fwinfo_size = 0;
 
-       priv->rtllib->bAwakePktSent = true;
+       priv->rtllib->awake_pkt_sent = true;
 
        fwinfo_size = sizeof(struct tx_fwinfo_8190pci);
 
index 9d3c7910550832e13f0c6092bc8a614284d81188..9d6704fc86ffaead56f08845c60336b13b55f2cd 100644 (file)
@@ -1374,7 +1374,7 @@ struct rtllib_device {
 
        /* for PS mode */
        unsigned long last_rx_ps_time;
-       bool                    bAwakePktSent;
+       bool                    awake_pkt_sent;
        u8                      LPSDelayCnt;
 
        /* used if IEEE_SOFTMAC_SINGLE_QUEUE is set */
index 0d53e0a92a4cc68b0682040c3f0139c59d91009a..08ff55c2f1be3df8a2da34a7445b892026a8f11e 100644 (file)
@@ -1378,7 +1378,7 @@ static short rtllib_sta_ps_sleep(struct rtllib_device *ieee, u64 *time)
                return 0;
 
        if (time) {
-               if (ieee->bAwakePktSent) {
+               if (ieee->awake_pkt_sent) {
                        psc->LPSAwakeIntvl = 1;
                } else {
                        u8 max_period = 5;
@@ -1461,7 +1461,7 @@ static inline void rtllib_sta_ps(struct work_struct *work)
                        spin_unlock_irqrestore(&ieee->mgmt_tx_lock, flags2);
                }
 
-               ieee->bAwakePktSent = false;
+               ieee->awake_pkt_sent = false;
 
        } else if (sleep == 2) {
                spin_lock_irqsave(&ieee->mgmt_tx_lock, flags2);