staging: rtl8192e: Rename CCKPresentAtt...
authorPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Mon, 9 Jan 2023 19:08:41 +0000 (20:08 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 17 Jan 2023 18:28:50 +0000 (19:28 +0100)
Rename variable CCKPresentAttentuation_20Mdefault to
cck_present_attn_20m_def, CCKPresentAttentuation_40Mdefault to
cck_present_attn_40m_def and CCKPresentAttentuation_difference to
cck_present_attn_diff to avoid CamelCase which is not accepted by
checkpatch.

Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/1254f23aefd25075ef3e16719eed79b461f41e4c.1673290428.git.philipp.g.hortmann@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
drivers/staging/rtl8192e/rtl8192e/rtl_core.h
drivers/staging/rtl8192e/rtl8192e/rtl_dm.c

index 8b61c75..5c53264 100644 (file)
@@ -787,14 +787,14 @@ start:
 
                        for (i = 0; i < CCKTxBBGainTableLength; i++) {
                                if (TempCCk == dm_cck_tx_bb_gain[i][0]) {
-                                       priv->CCKPresentAttentuation_20Mdefault = i;
+                                       priv->cck_present_attn_20m_def = i;
                                        break;
                                }
                        }
-                       priv->CCKPresentAttentuation_40Mdefault = 0;
-                       priv->CCKPresentAttentuation_difference = 0;
+                       priv->cck_present_attn_40m_def = 0;
+                       priv->cck_present_attn_diff = 0;
                        priv->cck_present_attn =
-                                 priv->CCKPresentAttentuation_20Mdefault;
+                                 priv->cck_present_attn_20m_def;
                        priv->btxpower_tracking = false;
                }
        }
index ccbce3e..33b39b1 100644 (file)
@@ -1009,8 +1009,8 @@ static void _rtl92e_cck_tx_power_track_bw_switch_tssi(struct net_device *dev)
        switch (priv->CurrentChannelBW) {
        case HT_CHANNEL_WIDTH_20:
                priv->cck_present_attn =
-                       priv->CCKPresentAttentuation_20Mdefault +
-                           priv->CCKPresentAttentuation_difference;
+                       priv->cck_present_attn_20m_def +
+                           priv->cck_present_attn_diff;
 
                if (priv->cck_present_attn >
                    (CCKTxBBGainTableLength-1))
@@ -1034,8 +1034,8 @@ static void _rtl92e_cck_tx_power_track_bw_switch_tssi(struct net_device *dev)
 
        case HT_CHANNEL_WIDTH_20_40:
                priv->cck_present_attn =
-                       priv->CCKPresentAttentuation_40Mdefault +
-                       priv->CCKPresentAttentuation_difference;
+                       priv->cck_present_attn_40m_def +
+                       priv->cck_present_attn_diff;
 
                if (priv->cck_present_attn >
                    (CCKTxBBGainTableLength - 1))
index 825cb8c..344b2c9 100644 (file)
@@ -463,9 +463,9 @@ struct r8192_priv {
        u8 cck_pwr_enl;
        u16 tssi_13dBm;
        u32 pwr_track;
-       u8 CCKPresentAttentuation_20Mdefault;
-       u8 CCKPresentAttentuation_40Mdefault;
-       s8 CCKPresentAttentuation_difference;
+       u8 cck_present_attn_20m_def;
+       u8 cck_present_attn_40m_def;
+       s8 cck_present_attn_diff;
        s8 cck_present_attn;
        long undecorated_smoothed_pwdb;
 
index 6cd49b3..6d3c949 100644 (file)
@@ -708,21 +708,21 @@ static void _rtl92e_dm_tx_power_tracking_callback_tssi(struct net_device *dev)
                                _rtl92e_dm_tx_update_tssi_strong_signal(dev, RF_Type);
 
                        if (RF_Type == RF_2T4R) {
-                               priv->CCKPresentAttentuation_difference
+                               priv->cck_present_attn_diff
                                        = priv->rfa_txpowertrackingindex - priv->rfa_txpowertracking_default;
                        } else {
-                               priv->CCKPresentAttentuation_difference
+                               priv->cck_present_attn_diff
                                        = priv->rfa_txpowertrackingindex_real - priv->rfa_txpowertracking_default;
                        }
 
                        if (priv->CurrentChannelBW == HT_CHANNEL_WIDTH_20)
                                priv->cck_present_attn =
-                                        priv->CCKPresentAttentuation_20Mdefault +
-                                        priv->CCKPresentAttentuation_difference;
+                                        priv->cck_present_attn_20m_def +
+                                        priv->cck_present_attn_diff;
                        else
                                priv->cck_present_attn =
-                                        priv->CCKPresentAttentuation_40Mdefault +
-                                        priv->CCKPresentAttentuation_difference;
+                                        priv->cck_present_attn_40m_def +
+                                        priv->cck_present_attn_diff;
 
                        if (priv->cck_present_attn > (CCKTxBBGainTableLength-1))
                                priv->cck_present_attn = CCKTxBBGainTableLength-1;
@@ -742,8 +742,8 @@ static void _rtl92e_dm_tx_power_tracking_callback_tssi(struct net_device *dev)
                                        rtl92e_dm_cck_txpower_adjust(dev, priv->bcck_in_ch14);
                        }
 
-                       if (priv->CCKPresentAttentuation_difference <= -12 ||
-                           priv->CCKPresentAttentuation_difference >= 24) {
+                       if (priv->cck_present_attn_diff <= -12 ||
+                           priv->cck_present_attn_diff >= 24) {
                                priv->rtllib->bdynamic_txpower_enable = true;
                                rtl92e_writeb(dev, Pw_Track_Flag, 0);
                                rtl92e_writeb(dev, FW_Busy_Flag, 0);