staging: rtl8192e: Rename diff_TH and disabledRF
Rename variables diff_TH to diff_th and disabledRF to disabled_rf 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/2b95586ed460f90c98721a429aced1ffaf258e49.1675792435.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a89fbd4b9c
commit
44414e625c
|
@ -1733,12 +1733,12 @@ static void _rtl92e_dm_init_rx_path_selection(struct net_device *dev)
|
|||
|
||||
DM_RxPathSelTable.enable = 1;
|
||||
DM_RxPathSelTable.ss_th_low = RX_PATH_SEL_SS_TH_LOW;
|
||||
DM_RxPathSelTable.diff_TH = RX_PATH_SEL_DIFF_TH;
|
||||
DM_RxPathSelTable.diff_th = RX_PATH_SEL_DIFF_TH;
|
||||
if (priv->customer_id == RT_CID_819X_NETCORE)
|
||||
DM_RxPathSelTable.cck_method = CCK_Rx_Version_2;
|
||||
else
|
||||
DM_RxPathSelTable.cck_method = CCK_Rx_Version_1;
|
||||
DM_RxPathSelTable.disabledRF = 0;
|
||||
DM_RxPathSelTable.disabled_rf = 0;
|
||||
for (i = 0; i < 4; i++) {
|
||||
DM_RxPathSelTable.rf_rssi[i] = 50;
|
||||
DM_RxPathSelTable.cck_pwdb_sta[i] = -64;
|
||||
|
@ -1773,8 +1773,8 @@ static void _rtl92e_dm_rx_path_sel_byrssi(struct net_device *dev)
|
|||
cck_Rx_Path_initialized = 1;
|
||||
}
|
||||
|
||||
DM_RxPathSelTable.disabledRF = 0xf;
|
||||
DM_RxPathSelTable.disabledRF &= ~(rtl92e_readb(dev, 0xc04));
|
||||
DM_RxPathSelTable.disabled_rf = 0xf;
|
||||
DM_RxPathSelTable.disabled_rf &= ~(rtl92e_readb(dev, 0xc04));
|
||||
|
||||
if (priv->rtllib->mode == WIRELESS_MODE_B)
|
||||
DM_RxPathSelTable.cck_method = CCK_Rx_Version_2;
|
||||
|
@ -1903,7 +1903,7 @@ static void _rtl92e_dm_rx_path_sel_byrssi(struct net_device *dev)
|
|||
|
||||
if (tmp_min_rssi < DM_RxPathSelTable.ss_th_low && disabled_rf_cnt < 2) {
|
||||
if ((tmp_max_rssi - tmp_min_rssi) >=
|
||||
DM_RxPathSelTable.diff_TH) {
|
||||
DM_RxPathSelTable.diff_th) {
|
||||
DM_RxPathSelTable.rf_enable_rssi_th[min_rssi_index] =
|
||||
tmp_max_rssi+5;
|
||||
rtl92e_set_bb_reg(dev, rOFDM0_TRxPathEnable,
|
||||
|
@ -1927,9 +1927,9 @@ static void _rtl92e_dm_rx_path_sel_byrssi(struct net_device *dev)
|
|||
DM_RxPathSelTable.cck_rx_path);
|
||||
}
|
||||
|
||||
if (DM_RxPathSelTable.disabledRF) {
|
||||
if (DM_RxPathSelTable.disabled_rf) {
|
||||
for (i = 0; i < 4; i++) {
|
||||
if ((DM_RxPathSelTable.disabledRF>>i) & 0x1) {
|
||||
if ((DM_RxPathSelTable.disabled_rf >> i) & 0x1) {
|
||||
if (tmp_max_rssi >=
|
||||
DM_RxPathSelTable.rf_enable_rssi_th[i]) {
|
||||
rtl92e_set_bb_reg(dev,
|
||||
|
|
|
@ -130,8 +130,8 @@ struct drx_path_sel {
|
|||
u8 cck_rx_path;
|
||||
|
||||
u8 ss_th_low;
|
||||
u8 diff_TH;
|
||||
u8 disabledRF;
|
||||
u8 diff_th;
|
||||
u8 disabled_rf;
|
||||
u8 reserved;
|
||||
|
||||
u8 rf_rssi[4];
|
||||
|
|
Loading…
Reference in New Issue