rndis_wlan: increase scan timer delay
Increase scan delay from 1 sec to 6 sec. Spec says that scan by OID_802_11_BSSID_LIST_SCAN completes in 6 seconds. Before rfkill patch too short delay was not problem as device was always active (radio on) and performing background scanning. Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
5fd8f2503b
commit
b1d25a6764
|
@ -1607,7 +1607,7 @@ static int rndis_get_tx_power(struct wiphy *wiphy, int *dbm)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define SCAN_DELAY_JIFFIES (HZ)
|
#define SCAN_DELAY_JIFFIES (6 * HZ)
|
||||||
static int rndis_scan(struct wiphy *wiphy, struct net_device *dev,
|
static int rndis_scan(struct wiphy *wiphy, struct net_device *dev,
|
||||||
struct cfg80211_scan_request *request)
|
struct cfg80211_scan_request *request)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue