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

staging:rtl8192u: Rename PHY_SetRF8256OFDMTxPower() - Style

Rename function PHY_SetRF8256OFDMTxPower() to
phy_set_rf8256_ofdm_tx_power(), to clear the checkpatch issue with
CamelCase naming.

This is a coding style change which should have no impact on runtime
code execution.
Signed-off-by: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3942039a
...@@ -245,7 +245,7 @@ void phy_set_rf8256_cck_tx_power(struct net_device *dev, u8 powerlevel) ...@@ -245,7 +245,7 @@ void phy_set_rf8256_cck_tx_power(struct net_device *dev, u8 powerlevel)
} }
void PHY_SetRF8256OFDMTxPower(struct net_device *dev, u8 powerlevel) void phy_set_rf8256_ofdm_tx_power(struct net_device *dev, u8 powerlevel)
{ {
struct r8192_priv *priv = ieee80211_priv(dev); struct r8192_priv *priv = ieee80211_priv(dev);
/* Joseph TxPower for 8192 testing */ /* Joseph TxPower for 8192 testing */
......
...@@ -18,6 +18,6 @@ void phy_set_rf8256_bandwidth(struct net_device *dev, ...@@ -18,6 +18,6 @@ void phy_set_rf8256_bandwidth(struct net_device *dev,
enum ht_channel_width bandwidth); enum ht_channel_width bandwidth);
void phy_rf8256_config(struct net_device *dev); void phy_rf8256_config(struct net_device *dev);
void phy_set_rf8256_cck_tx_power(struct net_device *dev, u8 powerlevel); void phy_set_rf8256_cck_tx_power(struct net_device *dev, u8 powerlevel);
void PHY_SetRF8256OFDMTxPower(struct net_device *dev, u8 powerlevel); void phy_set_rf8256_ofdm_tx_power(struct net_device *dev, u8 powerlevel);
#endif #endif
...@@ -919,7 +919,7 @@ void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel) ...@@ -919,7 +919,7 @@ void rtl8192_phy_setTxPower(struct net_device *dev, u8 channel)
case RF_8256: case RF_8256:
/* need further implement */ /* need further implement */
phy_set_rf8256_cck_tx_power(dev, powerlevel); phy_set_rf8256_cck_tx_power(dev, powerlevel);
PHY_SetRF8256OFDMTxPower(dev, powerlevelOFDM24G); phy_set_rf8256_ofdm_tx_power(dev, powerlevelOFDM24G);
break; break;
default: default:
RT_TRACE((COMP_PHY|COMP_ERR), RT_TRACE((COMP_PHY|COMP_ERR),
...@@ -1067,7 +1067,7 @@ static void rtl8192_SetTxPowerLevel(struct net_device *dev, u8 channel) ...@@ -1067,7 +1067,7 @@ static void rtl8192_SetTxPowerLevel(struct net_device *dev, u8 channel)
case RF_8256: case RF_8256:
phy_set_rf8256_cck_tx_power(dev, powerlevel); phy_set_rf8256_cck_tx_power(dev, powerlevel);
PHY_SetRF8256OFDMTxPower(dev, powerlevelOFDM24G); phy_set_rf8256_ofdm_tx_power(dev, powerlevelOFDM24G);
break; break;
case RF_8258: case RF_8258:
......
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