staging: rtl8192e: renamed variable bCurShortGI20MHz
authorGary Rookard <garyrookard@fastmail.org>
Fri, 8 Dec 2023 01:55:33 +0000 (20:55 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 9 Dec 2023 14:07:18 +0000 (15:07 +0100)
Coding style issue, checkpatch Avoid CamelCase,
rename it. bCurShortGI20MHz -> cur_short_gi_20mhz

Signed-off-by: Gary Rookard <garyrookard@fastmail.org>
Link: https://lore.kernel.org/r/20231208015536.21013-3-garyrookard@fastmail.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
drivers/staging/rtl8192e/rtl8192e/rtl_dm.c
drivers/staging/rtl8192e/rtl819x_HT.h
drivers/staging/rtl8192e/rtl819x_HTProc.c
drivers/staging/rtl8192e/rtllib_tx.c

index f01240f7e514fe179a4c8b6d27c6de09bc007a3c..e6d51abd0d0183b8ad976a2ffdf7767936cf55f8 100644 (file)
@@ -1766,7 +1766,7 @@ void rtl92e_update_ratr_table(struct net_device *dev)
            ieee->ht_info->cur_short_gi_40mhz)
                ratr_value |= 0x80000000;
        else if (!ieee->ht_info->cur_tx_bw40mhz &&
-                 ieee->ht_info->bCurShortGI20MHz)
+                 ieee->ht_info->cur_short_gi_20mhz)
                ratr_value |= 0x80000000;
        rtl92e_writel(dev, RATR0 + rate_index * 4, ratr_value);
        rtl92e_writeb(dev, UFWP, 1);
index c73d2ac910d54dd782088359f7766e3c97255520..e2828d57d1fd4f2ba8ff93233ab74d4f794daf6b 100644 (file)
@@ -289,7 +289,7 @@ static void _rtl92e_dm_check_rate_adaptive(struct net_device *dev)
                bshort_gi_enabled = (ht_info->cur_tx_bw40mhz &&
                                     ht_info->cur_short_gi_40mhz) ||
                                    (!ht_info->cur_tx_bw40mhz &&
-                                    ht_info->bCurShortGI20MHz);
+                                    ht_info->cur_short_gi_20mhz);
 
                pra->upper_rssi_threshold_ratr =
                                (pra->upper_rssi_threshold_ratr & (~BIT(31))) |
index f89b618f71a58aae36ab206cd770912cea70755f..77f28d87d3c0d71eaa26c1e83d9b7aaf738805ef 100644 (file)
@@ -99,7 +99,7 @@ struct rt_hi_throughput {
        u8 reg_short_gi_40mhz;
        u8 cur_short_gi_40mhz;
        u8 reg_short_gi_20mhz;
-       u8 bCurShortGI20MHz;
+       u8 cur_short_gi_20mhz;
        u8 reg_supp_cck;
        u8 bCurSuppCCK;
        enum ht_spec_ver ePeerHTSpecVer;
index f9c76aaf879112ace080f86045951cb44d2cfabb..633f735bdab16d39cd48c11fb546ac0552978007 100644 (file)
@@ -110,7 +110,7 @@ static u16 ht_mcs_to_data_rate(struct rtllib_device *ieee, u8 mcs_rate)
        u8      is40MHz = (ht_info->cur_bw_40mhz) ? 1 : 0;
        u8      isShortGI = (ht_info->cur_bw_40mhz) ?
                            ((ht_info->cur_short_gi_40mhz) ? 1 : 0) :
-                           ((ht_info->bCurShortGI20MHz) ? 1 : 0);
+                           ((ht_info->cur_short_gi_20mhz) ? 1 : 0);
        return MCS_DATA_RATE[is40MHz][isShortGI][(mcs_rate & 0x7f)];
 }
 
@@ -478,7 +478,7 @@ void HTOnAssocRsp(struct rtllib_device *ieee)
        ht_info->cur_tx_bw40mhz = ((pPeerHTInfo->RecommemdedTxWidth == 1) ?
                                 true : false);
 
-       ht_info->bCurShortGI20MHz = ((ht_info->reg_short_gi_20mhz) ?
+       ht_info->cur_short_gi_20mhz = ((ht_info->reg_short_gi_20mhz) ?
                                    ((pPeerHTCap->ShortGI20Mhz == 1) ?
                                    true : false) : false);
        ht_info->cur_short_gi_40mhz = ((ht_info->reg_short_gi_40mhz) ?
@@ -562,7 +562,7 @@ void HTInitializeHTInfo(struct rtllib_device *ieee)
        ht_info->cur_bw_40mhz = false;
        ht_info->cur_tx_bw40mhz = false;
 
-       ht_info->bCurShortGI20MHz = false;
+       ht_info->cur_short_gi_20mhz = false;
        ht_info->cur_short_gi_40mhz = false;
        ht_info->forced_short_gi = false;
 
index d51f4f3310d561fa40c03c7a5954ca1a9a6471ee..a2ae68cc13f5a5efdaf8cf7b7e3a0c191022fb62 100644 (file)
@@ -364,7 +364,7 @@ static void rtllib_query_HTCapShortGI(struct rtllib_device *ieee,
 
        if (ht_info->cur_bw_40mhz && ht_info->cur_short_gi_40mhz)
                tcb_desc->bUseShortGI = true;
-       else if (!ht_info->cur_bw_40mhz && ht_info->bCurShortGI20MHz)
+       else if (!ht_info->cur_bw_40mhz && ht_info->cur_short_gi_20mhz)
                tcb_desc->bUseShortGI = true;
 }