OSDN Git Service

staging:rtl8192u: Rename function PHY_RF8256_Config() - Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Sun, 26 Aug 2018 22:45:29 +0000 (23:45 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Aug 2018 17:28:15 +0000 (19:28 +0200)
Rename the function PHY_RF8256_Config() to phy_rf8256_config(). This
change clears the checkpatch issue with CamelCase naming.

This is a simple coding style change which should have no impact on
runtime code execution.

Signed-off-by: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/r8190_rtl8256.c
drivers/staging/rtl8192u/r8190_rtl8256.h
drivers/staging/rtl8192u/r819xU_phy.c

index 1bee11e..c4ae808 100644 (file)
@@ -85,7 +85,7 @@ void phy_set_rf8256_bandwidth(struct net_device *dev, enum ht_channel_width Band
  * Return:      NONE
  *--------------------------------------------------------------------------
  */
-void PHY_RF8256_Config(struct net_device *dev)
+void phy_rf8256_config(struct net_device *dev)
 {
        struct r8192_priv *priv = ieee80211_priv(dev);
        /* Initialize general global value
@@ -152,7 +152,7 @@ void phy_RF8256_Config_ParaFile(struct net_device *dev)
                 * TODO: this function should be removed on ASIC , Emily 2007.2.2
                 */
                if (rtl8192_phy_checkBBAndRF(dev, HW90_BLOCK_RF, (enum rf90_radio_path_e)eRFPath)) {
-                       RT_TRACE(COMP_ERR, "PHY_RF8256_Config():Check Radio[%d] Fail!!\n", eRFPath);
+                       RT_TRACE(COMP_ERR, "phy_rf8256_config():Check Radio[%d] Fail!!\n", eRFPath);
                        goto phy_RF8256_Config_ParaFile_Fail;
                }
 
index 25f5c8b..b58aab0 100644 (file)
@@ -16,7 +16,7 @@
 #define RTL819X_TOTAL_RF_PATH 2 /* for 8192U */
 void phy_set_rf8256_bandwidth(struct net_device *dev,
                              enum ht_channel_width bandwidth);
-void PHY_RF8256_Config(struct net_device *dev);
+void phy_rf8256_config(struct net_device *dev);
 void phy_RF8256_Config_ParaFile(struct net_device *dev);
 void PHY_SetRF8256CCKTxPower(struct net_device *dev, u8        powerlevel);
 void PHY_SetRF8256OFDMTxPower(struct net_device *dev, u8 powerlevel);
index 33a3eb7..eeaa77f 100644 (file)
@@ -794,7 +794,7 @@ static void rtl8192_BB_Config_ParaFile(struct net_device *dev)
                                                  (enum rf90_radio_path_e)0);
                if (status != 0) {
                        RT_TRACE((COMP_ERR | COMP_PHY),
-                                "PHY_RF8256_Config(): Check PHY%d Fail!!\n",
+                                "phy_rf8256_config(): Check PHY%d Fail!!\n",
                                 eCheckItem-1);
                        return;
                }
@@ -941,7 +941,7 @@ void rtl8192_phy_RFConfig(struct net_device *dev)
 
        switch (priv->rf_chip) {
        case RF_8256:
-               PHY_RF8256_Config(dev);
+               phy_rf8256_config(dev);
                break;
        default:
                RT_TRACE(COMP_ERR, "error chip id\n");