OSDN Git Service

staging:rtl8192u: Rename cck_Rx_path - Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Fri, 3 Aug 2018 00:02:00 +0000 (01:02 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 5 Aug 2018 14:21:06 +0000 (16:21 +0200)
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>
drivers/staging/rtl8192u/r8192U_dm.c
drivers/staging/rtl8192u/r8192U_dm.h

index 611bf3e..495f563 100644 (file)
@@ -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) {
index 53daec8..b1f19ba 100644 (file)
@@ -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;