staging: rtl8192e: Rename rtl8192_phy_setTxPower
authorMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Sun, 19 Jul 2015 17:27:54 +0000 (19:27 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Jul 2015 04:24:19 +0000 (21:24 -0700)
Use naming schema found in other rtlwifi devices.
Rename rtl8192_phy_setTxPower to rtl92e_set_tx_power.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
drivers/staging/rtl8192e/rtl8192e/r8192E_phy.h
drivers/staging/rtl8192e/rtl8192e/rtl_dm.c

index b389041..8f3172e 100644 (file)
@@ -832,7 +832,7 @@ start:
 
        if (priv->card_8192_version > (u8) VERSION_8190_BD) {
                rtl92e_get_tx_power(dev);
-               rtl8192_phy_setTxPower(dev, priv->chan);
+               rtl92e_set_tx_power(dev, priv->chan);
        }
 
        tmpvalue = read_nic_byte(dev, IC_VERRSION);
index 6ddbbfc..fbbf534 100644 (file)
@@ -637,7 +637,7 @@ void rtl92e_get_tx_power(struct net_device *dev)
        priv->SifsTime = read_nic_word(dev, SIFS);
 }
 
-void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel)
+void rtl92e_set_tx_power(struct net_device *dev, u8 channel)
 {
        struct r8192_priv *priv = rtllib_priv(dev);
        u8      powerlevel = 0, powerlevelOFDM24G = 0;
@@ -1386,7 +1386,7 @@ void rtl92e_init_gain(struct net_device *dev, u8 Operation)
                                 "Scan BBInitialGainRestore 0xa0a is %x\n",
                                 priv->initgain_backup.cca);
 
-                       rtl8192_phy_setTxPower(dev,
+                       rtl92e_set_tx_power(dev,
                                         priv->rtllib->current_network.channel);
 
                        if (dm_digtable.dig_algorithm ==
index 33aa78a..b474a2b 100644 (file)
@@ -84,7 +84,7 @@ extern bool rtl92e_check_bb_and_rf(struct net_device *dev,
                                   enum rf90_radio_path eRFPath);
 extern bool rtl92e_config_bb(struct net_device *dev);
 extern void rtl92e_get_tx_power(struct net_device *dev);
-extern void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel);
+extern void rtl92e_set_tx_power(struct net_device *dev, u8 channel);
 extern bool rtl92e_config_phy(struct net_device *dev);
 extern void rtl8192_phy_updateInitGain(struct net_device *dev);
 extern u8 rtl92e_config_rf_path(struct net_device *dev,
index de08547..fe8f291 100644 (file)
@@ -2555,8 +2555,7 @@ static void dm_dynamic_txpower(struct net_device *dev)
                RT_TRACE(COMP_TXAGC, "SetTxPowerLevel8190()  channel = %d\n",
                         priv->rtllib->current_network.channel);
 
-               rtl8192_phy_setTxPower(dev,
-                                priv->rtllib->current_network.channel);
+               rtl92e_set_tx_power(dev, priv->rtllib->current_network.channel);
        }
        priv->bLastDTPFlag_High = priv->bDynamicTxHighPower;
        priv->bLastDTPFlag_Low = priv->bDynamicTxLowPower;