Commit f19a08e7 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

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: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 863108d5
...@@ -2417,8 +2417,8 @@ static void dm_rxpath_sel_byrssi(struct net_device *dev) ...@@ -2417,8 +2417,8 @@ static void dm_rxpath_sel_byrssi(struct net_device *dev)
return; return;
if (!cck_Rx_Path_initialized) { if (!cck_Rx_Path_initialized) {
read_nic_byte(dev, 0xa07, &DM_RxPathSelTable.cck_Rx_path); read_nic_byte(dev, 0xa07, &DM_RxPathSelTable.cck_rx_path);
DM_RxPathSelTable.cck_Rx_path &= 0xf; DM_RxPathSelTable.cck_rx_path &= 0xf;
cck_Rx_Path_initialized = 1; cck_Rx_Path_initialized = 1;
} }
...@@ -2573,8 +2573,8 @@ static void dm_rxpath_sel_byrssi(struct net_device *dev) ...@@ -2573,8 +2573,8 @@ static void dm_rxpath_sel_byrssi(struct net_device *dev)
} }
if (update_cck_rx_path) { if (update_cck_rx_path) {
DM_RxPathSelTable.cck_Rx_path = (cck_default_Rx<<2)|(cck_optional_Rx); DM_RxPathSelTable.cck_rx_path = (cck_default_Rx<<2)|(cck_optional_Rx);
rtl8192_setBBreg(dev, rCCK0_AFESetting, 0x0f000000, DM_RxPathSelTable.cck_Rx_path); rtl8192_setBBreg(dev, rCCK0_AFESetting, 0x0f000000, DM_RxPathSelTable.cck_rx_path);
} }
if (DM_RxPathSelTable.disabledRF) { if (DM_RxPathSelTable.disabledRF) {
......
...@@ -130,7 +130,7 @@ enum cck_rx_path_method { ...@@ -130,7 +130,7 @@ enum cck_rx_path_method {
struct dynamic_rx_path_sel { struct dynamic_rx_path_sel {
enum cck_rx_path_method cck_method; enum cck_rx_path_method cck_method;
u8 cck_Rx_path; u8 cck_rx_path;
u8 SS_TH_low; u8 SS_TH_low;
u8 diff_TH; u8 diff_TH;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment