staging: rtl8192e: Rename tmpCCK20Mindex and tmpCCK40Mindex
Rename variable tmpCCK20Mindex to tmp_cck_20m_index and tmpCCK40Mindex to tmp_cck_40m_index 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/3e8b6cd85e6e4fcc934cc1d813f5f594cef8ff92.1683730854.git.yogi.kernel@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9c2501d68e
commit
94c4126611
@ -658,7 +658,7 @@ static void _rtl92e_dm_tx_power_tracking_cb_thermal(struct net_device *dev)
|
||||
#define ThermalMeterVal 9
|
||||
struct r8192_priv *priv = rtllib_priv(dev);
|
||||
u32 tmp_reg, tmp_cck;
|
||||
u8 tmp_ofdm_index, tmp_cck_index, tmpCCK20Mindex, tmpCCK40Mindex, tmpval;
|
||||
u8 tmp_ofdm_index, tmp_cck_index, tmp_cck_20m_index, tmp_cck_40m_index, tmpval;
|
||||
int i = 0, CCKSwingNeedUpdate = 0;
|
||||
|
||||
if (!priv->tx_pwr_tracking_init) {
|
||||
@ -689,33 +689,33 @@ static void _rtl92e_dm_tx_power_tracking_cb_thermal(struct net_device *dev)
|
||||
priv->thermal_meter[1] = ThermalMeterVal;
|
||||
|
||||
if (priv->thermal_meter[0] >= (u8)tmp_reg) {
|
||||
tmp_ofdm_index = tmpCCK20Mindex = 6+(priv->thermal_meter[0] -
|
||||
tmp_ofdm_index = tmp_cck_20m_index = 6+(priv->thermal_meter[0] -
|
||||
(u8)tmp_reg);
|
||||
tmpCCK40Mindex = tmpCCK20Mindex - 6;
|
||||
tmp_cck_40m_index = tmp_cck_20m_index - 6;
|
||||
if (tmp_ofdm_index >= OFDM_TABLE_LEN)
|
||||
tmp_ofdm_index = OFDM_TABLE_LEN - 1;
|
||||
if (tmpCCK20Mindex >= CCK_TABLE_LEN)
|
||||
tmpCCK20Mindex = CCK_TABLE_LEN - 1;
|
||||
if (tmpCCK40Mindex >= CCK_TABLE_LEN)
|
||||
tmpCCK40Mindex = CCK_TABLE_LEN - 1;
|
||||
if (tmp_cck_20m_index >= CCK_TABLE_LEN)
|
||||
tmp_cck_20m_index = CCK_TABLE_LEN - 1;
|
||||
if (tmp_cck_40m_index >= CCK_TABLE_LEN)
|
||||
tmp_cck_40m_index = CCK_TABLE_LEN - 1;
|
||||
} else {
|
||||
tmpval = (u8)tmp_reg - priv->thermal_meter[0];
|
||||
if (tmpval >= 6) {
|
||||
tmp_ofdm_index = 0;
|
||||
tmpCCK20Mindex = 0;
|
||||
tmp_cck_20m_index = 0;
|
||||
} else {
|
||||
tmp_ofdm_index = 6 - tmpval;
|
||||
tmpCCK20Mindex = 6 - tmpval;
|
||||
tmp_cck_20m_index = 6 - tmpval;
|
||||
}
|
||||
tmpCCK40Mindex = 0;
|
||||
tmp_cck_40m_index = 0;
|
||||
}
|
||||
if (priv->current_chnl_bw != HT_CHANNEL_WIDTH_20)
|
||||
tmp_cck_index = tmpCCK40Mindex;
|
||||
tmp_cck_index = tmp_cck_40m_index;
|
||||
else
|
||||
tmp_cck_index = tmpCCK20Mindex;
|
||||
tmp_cck_index = tmp_cck_20m_index;
|
||||
|
||||
priv->rec_cck_20m_idx = tmpCCK20Mindex;
|
||||
priv->rec_cck_40m_idx = tmpCCK40Mindex;
|
||||
priv->rec_cck_20m_idx = tmp_cck_20m_index;
|
||||
priv->rec_cck_40m_idx = tmp_cck_40m_index;
|
||||
|
||||
if (priv->rtllib->current_network.channel == 14 &&
|
||||
!priv->bcck_in_ch14) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user