staging: rtl8192e: Rename variable currentRATR
authorYogesh Hegde <yogi.kernel@gmail.com>
Sun, 2 Jul 2023 12:15:19 +0000 (17:45 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jul 2023 07:59:37 +0000 (09:59 +0200)
Rename variable currentRATR to current_ratr to avoid CamelCase
which is not accepted by checkpatch.

Signed-off-by: Yogesh Hegde <yogi.kernel@gmail.com>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/091a5abb231fb5c88d47f329ec3b5133b08d6b23.1688299890.git.yogi.kernel@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/rtl_dm.c

index 37c275c..14c78f7 100644 (file)
@@ -277,7 +277,7 @@ static void _rtl92e_dm_check_rate_adaptive(struct net_device *dev)
        struct r8192_priv *priv = rtllib_priv(dev);
        struct rt_hi_throughput *ht_info = priv->rtllib->ht_info;
        struct rate_adaptive *pra = &priv->rate_adaptive;
-       u32 currentRATR, targetRATR = 0;
+       u32 current_ratr, targetRATR = 0;
        u32 LowRSSIThreshForRA = 0, HighRSSIThreshForRA = 0;
        bool bshort_gi_enabled = false;
        static u8 ping_rssi_state;
@@ -363,8 +363,8 @@ static void _rtl92e_dm_check_rate_adaptive(struct net_device *dev)
                if (priv->rtllib->GetHalfNmodeSupportByAPsHandler(dev))
                        targetRATR &=  0xf00fffff;
 
-               currentRATR = rtl92e_readl(dev, RATR0);
-               if (targetRATR !=  currentRATR) {
+               current_ratr = rtl92e_readl(dev, RATR0);
+               if (targetRATR !=  current_ratr) {
                        u32 ratr_value;
 
                        ratr_value = targetRATR;