mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-06-23 08:34:20 +00:00
rtl8188eu: Remove CONFIG_VALIDATE_SSID
This parameter is not set. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
5656471ac2
commit
632cdeeec8
3 changed files with 4 additions and 29 deletions
|
@ -1940,26 +1940,18 @@ static int rtw_wx_get_scan(struct net_device *dev, struct iw_request_info *a,
|
|||
pnetwork = LIST_CONTAINOR(plist, struct wlan_network, list);
|
||||
|
||||
//report network only if the current channel set contains the channel to which this network belongs
|
||||
if (rtw_ch_set_search_ch(padapter->mlmeextpriv.channel_set, pnetwork->network.Configuration.DSConfig) >= 0
|
||||
#ifdef CONFIG_VALIDATE_SSID
|
||||
&& true == rtw_validate_ssid(&(pnetwork->network.Ssid))
|
||||
#endif
|
||||
)
|
||||
{
|
||||
if (rtw_ch_set_search_ch(padapter->mlmeextpriv.channel_set, pnetwork->network.Configuration.DSConfig) >= 0)
|
||||
ev=translate_scan(padapter, a, pnetwork, ev, stop);
|
||||
}
|
||||
|
||||
plist = get_next(plist);
|
||||
|
||||
}
|
||||
|
||||
_exit_critical_bh(&(pmlmepriv->scanned_queue.lock), &irqL);
|
||||
|
||||
wrqu->data.length = ev-extra;
|
||||
wrqu->data.length = ev-extra;
|
||||
wrqu->data.flags = 0;
|
||||
|
||||
exit:
|
||||
|
||||
_func_exit_;
|
||||
|
||||
#ifdef DBG_IOCTL
|
||||
|
@ -1967,7 +1959,6 @@ exit:
|
|||
#endif
|
||||
|
||||
return ret ;
|
||||
|
||||
}
|
||||
|
||||
//set ssid flow
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue