mirror of https://gitee.com/openkylin/linux.git
rtlwifi: rtl8192cu: Remove rtl92c_init_beacon_max_error's parameter
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>
This commit is contained in:
parent
dacc7e1939
commit
bfe3d2bf6c
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue