diff options
Diffstat (limited to 'drivers/net/wireless/rtlwifi/rtl8192cu/phy.c')
| -rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192cu/phy.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/phy.c b/drivers/net/wireless/rtlwifi/rtl8192cu/phy.c index 4e020e654e6..9a3d0239e27 100644 --- a/drivers/net/wireless/rtlwifi/rtl8192cu/phy.c +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/phy.c @@ -38,7 +38,7 @@  #include "table.h"  u32 rtl92cu_phy_query_rf_reg(struct ieee80211_hw *hw, -			    enum radio_path rfpath, u32 regaddr, u32 bitmask) +			     enum radio_path rfpath, u32 regaddr, u32 bitmask)  {  	struct rtl_priv *rtlpriv = rtl_priv(hw);  	u32 original_value, readback_value, bitshift; @@ -64,8 +64,8 @@ u32 rtl92cu_phy_query_rf_reg(struct ieee80211_hw *hw,  }  void rtl92cu_phy_set_rf_reg(struct ieee80211_hw *hw, -			   enum radio_path rfpath, -			   u32 regaddr, u32 bitmask, u32 data) +			    enum radio_path rfpath, +			    u32 regaddr, u32 bitmask, u32 data)  {  	struct rtl_priv *rtlpriv = rtl_priv(hw);  	struct rtl_phy *rtlphy = &(rtlpriv->phy); @@ -163,7 +163,7 @@ bool _rtl92cu_phy_config_mac_with_headerfile(struct ieee80211_hw *hw)  }  bool _rtl92cu_phy_config_bb_with_headerfile(struct ieee80211_hw *hw, -						  u8 configtype) +					    u8 configtype)  {  	int i;  	u32 *phy_regarray_table; @@ -223,7 +223,7 @@ bool _rtl92cu_phy_config_bb_with_headerfile(struct ieee80211_hw *hw,  }  bool _rtl92cu_phy_config_bb_with_pgheaderfile(struct ieee80211_hw *hw, -						    u8 configtype) +					      u8 configtype)  {  	struct rtl_priv *rtlpriv = rtl_priv(hw);  	struct rtl_phy *rtlphy = &(rtlpriv->phy); @@ -459,7 +459,7 @@ void _rtl92cu_phy_lc_calibrate(struct ieee80211_hw *hw, bool is2t)  	}  } -bool _rtl92cu_phy_set_rf_power_state(struct ieee80211_hw *hw, +static bool _rtl92cu_phy_set_rf_power_state(struct ieee80211_hw *hw,  					    enum rf_pwrstate rfpwr_state)  {  	struct rtl_priv *rtlpriv = rtl_priv(hw); @@ -595,7 +595,7 @@ bool _rtl92cu_phy_set_rf_power_state(struct ieee80211_hw *hw,  }  bool rtl92cu_phy_set_rf_power_state(struct ieee80211_hw *hw, -				   enum rf_pwrstate rfpwr_state) +				    enum rf_pwrstate rfpwr_state)  {  	struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw));  	bool bresult = false;  |