rtlwifi: rtl8192cu: Remove rtl92c_init_beacon_max_error's parameter
authorTaehee Yoo <ap420073@gmail.com>
Sat, 9 May 2015 09:16:51 +0000 (18:16 +0900)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 26 May 2015 10:43:18 +0000 (13:43 +0300)
parameter "infra_mode" of rtl92c_init_beacon_max_error() is not used.
so i remove this.

Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/rtlwifi/rtl8192cu/hw.c
drivers/net/wireless/rtlwifi/rtl8192cu/mac.c
drivers/net/wireless/rtlwifi/rtl8192cu/mac.h

index 3c1639b..1898596 100644 (file)
@@ -889,7 +889,7 @@ static int _rtl92cu_init_mac(struct ieee80211_hw *hw)
        rtl92c_set_min_space(hw, IS_92C_SERIAL(rtlhal->version));
        rtl92c_init_beacon_parameters(hw, rtlhal->version);
        rtl92c_init_ampdu_aggregation(hw);
-       rtl92c_init_beacon_max_error(hw, true);
+       rtl92c_init_beacon_max_error(hw);
        return err;
 }
 
index adb8107..f3db6bc 100644 (file)
@@ -613,7 +613,7 @@ void rtl92c_init_ampdu_aggregation(struct ieee80211_hw *hw)
        rtl_write_word(rtlpriv, 0x4CA, 0x0708);
 }
 
-void rtl92c_init_beacon_max_error(struct ieee80211_hw *hw, bool infra_mode)
+void rtl92c_init_beacon_max_error(struct ieee80211_hw *hw)
 {
        struct rtl_priv *rtlpriv = rtl_priv(hw);
 
index bf53652..58548e8 100644 (file)
@@ -66,7 +66,7 @@ void rtl92c_init_edca_param(struct ieee80211_hw *hw,
 
 void rtl92c_init_edca(struct ieee80211_hw *hw);
 void rtl92c_init_ampdu_aggregation(struct ieee80211_hw *hw);
-void rtl92c_init_beacon_max_error(struct ieee80211_hw *hw, bool infra_mode);
+void rtl92c_init_beacon_max_error(struct ieee80211_hw *hw);
 void rtl92c_init_rdg_setting(struct ieee80211_hw *hw);
 void rtl92c_init_retry_function(struct ieee80211_hw *hw);