wl12xx: use SCAN_SSID_TYPE_PUBLIC when using the wildcard in sched_scan
authorLuciano Coelho <coelho@ti.com>
Tue, 23 Aug 2011 15:34:45 +0000 (18:34 +0300)
committerLuciano Coelho <coelho@ti.com>
Thu, 25 Aug 2011 07:24:29 +0000 (10:24 +0300)
When we are scanning for the wildcard SSID in a scheduled scan, we
should use SCAN_SSID_TYPE_PUBLIC so that we don't filter out the scan
results.

Signed-off-by: Luciano Coelho <coelho@ti.com>
drivers/net/wireless/wl12xx/scan.c

index af9d53c..af4ad23 100644 (file)
@@ -490,9 +490,12 @@ wl12xx_scan_sched_scan_ssid_list(struct wl1271 *wl,
                return -ENOMEM;
 
        while ((cmd->n_ssids < req->n_ssids) && ssid) {
-               if (ssid->ssid_len == 0)
+               if (ssid->ssid_len == 0) {
                        wildcard = 1;
-               cmd->ssids[cmd->n_ssids].type = SCAN_SSID_TYPE_HIDDEN;
+                       cmd->ssids[cmd->n_ssids].type = SCAN_SSID_TYPE_PUBLIC;
+               } else {
+                       cmd->ssids[cmd->n_ssids].type = SCAN_SSID_TYPE_HIDDEN;
+               }
                cmd->ssids[cmd->n_ssids].len = ssid->ssid_len;
                memcpy(cmd->ssids[cmd->n_ssids].ssid, ssid->ssid,
                       ssid->ssid_len);