staging:rtl8192u: Rename cck_Rx_path - Style
Rename the member variable cck_Rx_path to cck_rx_path. This clears the checkpatch issue with CamelCase naming. This is a coding style change which should have no impact one runtime code execution. Signed-off-by: John Whitmore <johnfwhitmore@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
863108d5a0
Коммит
f19a08e76d
|
@ -2417,8 +2417,8 @@ static void dm_rxpath_sel_byrssi(struct net_device *dev)
|
|||
return;
|
||||
|
||||
if (!cck_Rx_Path_initialized) {
|
||||
read_nic_byte(dev, 0xa07, &DM_RxPathSelTable.cck_Rx_path);
|
||||
DM_RxPathSelTable.cck_Rx_path &= 0xf;
|
||||
read_nic_byte(dev, 0xa07, &DM_RxPathSelTable.cck_rx_path);
|
||||
DM_RxPathSelTable.cck_rx_path &= 0xf;
|
||||
cck_Rx_Path_initialized = 1;
|
||||
}
|
||||
|
||||
|
@ -2573,8 +2573,8 @@ static void dm_rxpath_sel_byrssi(struct net_device *dev)
|
|||
}
|
||||
|
||||
if (update_cck_rx_path) {
|
||||
DM_RxPathSelTable.cck_Rx_path = (cck_default_Rx<<2)|(cck_optional_Rx);
|
||||
rtl8192_setBBreg(dev, rCCK0_AFESetting, 0x0f000000, DM_RxPathSelTable.cck_Rx_path);
|
||||
DM_RxPathSelTable.cck_rx_path = (cck_default_Rx<<2)|(cck_optional_Rx);
|
||||
rtl8192_setBBreg(dev, rCCK0_AFESetting, 0x0f000000, DM_RxPathSelTable.cck_rx_path);
|
||||
}
|
||||
|
||||
if (DM_RxPathSelTable.disabledRF) {
|
||||
|
|
|
@ -130,7 +130,7 @@ enum cck_rx_path_method {
|
|||
|
||||
struct dynamic_rx_path_sel {
|
||||
enum cck_rx_path_method cck_method;
|
||||
u8 cck_Rx_path;
|
||||
u8 cck_rx_path;
|
||||
|
||||
u8 SS_TH_low;
|
||||
u8 diff_TH;
|
||||
|
|
Загрузка…
Ссылка в новой задаче