mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-06 05:23:06 +00:00
rtl8188eu: Remove a few more configuration variables
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
5881f66af5
commit
237fa4c813
6 changed files with 1 additions and 53 deletions
|
@ -1938,10 +1938,6 @@ void rtw_dynamic_check_timer_handlder(struct adapter *adapter)
|
|||
|
||||
if (!adapter)
|
||||
return;
|
||||
#if defined(CONFIG_CHECK_BT_HANG) && defined(CONFIG_BT_COEXIST)
|
||||
if (adapter->HalFunc.hal_checke_bt_hang)
|
||||
adapter->HalFunc.hal_checke_bt_hang(adapter);
|
||||
#endif
|
||||
if (adapter->hw_init_completed == false)
|
||||
return;
|
||||
|
||||
|
@ -1996,11 +1992,7 @@ void rtw_dynamic_check_timer_handlder(struct adapter *adapter)
|
|||
#endif /* (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35)) */
|
||||
}
|
||||
|
||||
#if defined(IEEE80211_SCAN_RESULT_EXPIRE)
|
||||
#define RTW_SCAN_RESULT_EXPIRE IEEE80211_SCAN_RESULT_EXPIRE/HZ*1000 -1000 /* 3000 -1000 */
|
||||
#else
|
||||
#define RTW_SCAN_RESULT_EXPIRE 2000
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Select a new join candidate from the original @param candidate and @param competitor
|
||||
|
|
|
@ -4350,9 +4350,7 @@ int issue_probereq_p2p_ex(struct adapter *adapter, u8 *da, int try_cnt, int wait
|
|||
|
||||
if (ret != _FAIL) {
|
||||
ret = _SUCCESS;
|
||||
#ifndef DBG_XMIT_ACK
|
||||
goto exit;
|
||||
#endif
|
||||
}
|
||||
|
||||
if (try_cnt && wait_ms) {
|
||||
|
@ -5660,9 +5658,7 @@ int issue_probereq_ex(struct adapter *padapter, struct ndis_802_11_ssid *pssid,
|
|||
|
||||
if (ret != _FAIL) {
|
||||
ret = _SUCCESS;
|
||||
#ifndef DBG_XMIT_ACK
|
||||
goto exit;
|
||||
#endif
|
||||
}
|
||||
|
||||
if (try_cnt && wait_ms) {
|
||||
|
@ -6425,9 +6421,7 @@ int issue_nulldata(struct adapter *padapter, unsigned char *da, unsigned int pow
|
|||
|
||||
if (ret != _FAIL) {
|
||||
ret = _SUCCESS;
|
||||
#ifndef DBG_XMIT_ACK
|
||||
goto exit;
|
||||
#endif
|
||||
}
|
||||
|
||||
if (try_cnt && wait_ms) {
|
||||
|
@ -6559,9 +6553,7 @@ int issue_qos_nulldata(struct adapter *padapter, unsigned char *da, u16 tid, int
|
|||
|
||||
if (ret != _FAIL) {
|
||||
ret = _SUCCESS;
|
||||
#ifndef DBG_XMIT_ACK
|
||||
goto exit;
|
||||
#endif
|
||||
}
|
||||
|
||||
if (try_cnt && wait_ms) {
|
||||
|
@ -6675,9 +6667,7 @@ int issue_deauth_ex(struct adapter *padapter, u8 *da, unsigned short reason, int
|
|||
|
||||
if (ret != _FAIL) {
|
||||
ret = _SUCCESS;
|
||||
#ifndef DBG_XMIT_ACK
|
||||
goto exit;
|
||||
#endif
|
||||
}
|
||||
|
||||
if (try_cnt && wait_ms) {
|
||||
|
@ -7561,16 +7551,6 @@ u8 collect_bss_info(struct adapter *padapter, union recv_frame *precv_frame, str
|
|||
|
||||
}
|
||||
|
||||
#if defined(DBG_RX_SIGNAL_DISPLAY_PROCESSING) & 1
|
||||
if (strcmp(bssid->Ssid.Ssid, DBG_RX_SIGNAL_DISPLAY_SSID_MONITORED) == 0) {
|
||||
DBG_88E("Receiving %s(%pM, DSConfig:%u) from ch%u with ss:%3u, sq:%3u, RawRSSI:%3ld\n"
|
||||
, bssid->Ssid.Ssid, bssid->MacAddress, bssid->Configuration.DSConfig
|
||||
, rtw_get_oper_ch(padapter)
|
||||
, bssid->PhyInfo.SignalStrength, bssid->PhyInfo.SignalQuality, bssid->Rssi
|
||||
);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* mark bss info receving from nearby channel as SignalQuality 101 */
|
||||
if (bssid->Configuration.DSConfig != rtw_get_oper_ch(padapter))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue