rtl8188eu: Remove CONFIG_TX_MCAST2UNI

This parameter is always selected.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2015-02-20 10:11:36 -06:00
parent 0f3cbc1f0f
commit 49437ec417
9 changed files with 0 additions and 40 deletions

View file

@ -416,15 +416,12 @@ void expire_timeout_chk(struct adapter *padapter)
if (chk_sta_is_alive(psta) || !psta->expire_to) {
psta->expire_to = pstapriv->expire_to;
psta->keep_alive_trycnt = 0;
#ifdef CONFIG_TX_MCAST2UNI
psta->under_exist_checking = 0;
#endif /* CONFIG_TX_MCAST2UNI */
} else {
psta->expire_to--;
}
#ifndef CONFIG_ACTIVE_KEEP_ALIVE_CHECK
#ifdef CONFIG_TX_MCAST2UNI
#ifdef CONFIG_80211N_HT
if ( (psta->flags & WLAN_STA_HT) && (psta->htpriv.agg_enable_bitmap || psta->under_exist_checking) ) {
/* check sta by delba(addba) for 11n STA */
@ -445,7 +442,6 @@ void expire_timeout_chk(struct adapter *padapter)
}
}
#endif /* CONFIG_80211N_HT */
#endif /* CONFIG_TX_MCAST2UNI */
#endif /* CONFIG_ACTIVE_KEEP_ALIVE_CHECK */
if (psta->expire_to <= 0)

View file

@ -72,9 +72,7 @@ void _rtw_init_stainfo(struct sta_info *psta)
psta->no_ht_set = 0;
psta->ht_20mhz_set = 0;
#ifdef CONFIG_TX_MCAST2UNI
psta->under_exist_checking = 0;
#endif /* CONFIG_TX_MCAST2UNI */
psta->keep_alive_trycnt = 0;
@ -588,9 +586,7 @@ u32 rtw_free_stainfo(struct adapter *padapter , struct sta_info *psta)
psta->aid = 0;
}
#ifdef CONFIG_TX_MCAST2UNI
psta->under_exist_checking = 0;
#endif /* CONFIG_TX_MCAST2UNI */
#endif /* CONFIG_AP_MODE */