diff options
author | Luciano Coelho <coelho@ti.com> | 2011-08-23 08:42:25 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-08-23 19:54:20 (GMT) |
commit | 7a5e4877c14de0827dbda8efa5080089757a8733 (patch) | |
tree | f16a6e9015f57d3d41cf60009ef6e1aa905ba773 /drivers/net/wireless | |
parent | a15f1c45f393982196c981a8df8b534cc9f3bb80 (diff) | |
download | linux-7a5e4877c14de0827dbda8efa5080089757a8733.tar.xz |
wl12xx: add max_sched_scan_ssids value to the hw description
After commit 5a865ba, we require a separate value to indicate the
number of supported SSIDs in scheduled scans. This patch adds a
proper value to the wl12xx driver.
This fixes a regression in 3.1-rc3 where scheduled scans were not
working properly with the wl12xx driver.
Signed-off-by: Luciano Coelho <coelho@ti.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/wl12xx/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c index e58c22d..b70ae40 100644 --- a/drivers/net/wireless/wl12xx/main.c +++ b/drivers/net/wireless/wl12xx/main.c @@ -4283,6 +4283,7 @@ int wl1271_init_ieee80211(struct wl1271 *wl) wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP); wl->hw->wiphy->max_scan_ssids = 1; + wl->hw->wiphy->max_sched_scan_ssids = 1; /* * Maximum length of elements in scanning probe request templates * should be the maximum length possible for a template, without |