staging: rtl8192e: Rename rtl8192_phy_setTxPower

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>
This commit is contained in:
Mateusz Kulikowski 2015-07-19 19:27:54 +02:00 committed by Greg Kroah-Hartman
parent b0e044feec
commit 5aa1b9cad7
4 changed files with 5 additions and 6 deletions

View 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);

View 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 ==

View 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,

View 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;