aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/scan.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/libertas/scan.c')
-rw-r--r--drivers/net/wireless/libertas/scan.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/wireless/libertas/scan.c b/drivers/net/wireless/libertas/scan.c
index f471157c02df..7e4b0ab108dc 100644
--- a/drivers/net/wireless/libertas/scan.c
+++ b/drivers/net/wireless/libertas/scan.c
@@ -416,8 +416,7 @@ wlan_scan_setup_scan_config(wlan_private * priv,
416 scanmode); 416 scanmode);
417 417
418 /* Set the number of probes to send, use adapter setting if unset */ 418 /* Set the number of probes to send, use adapter setting if unset */
419 numprobes = (puserscanin->numprobes ? puserscanin->numprobes : 419 numprobes = puserscanin->numprobes ? puserscanin->numprobes : 0;
420 adapter->scanprobes);
421 420
422 /* 421 /*
423 * Set the BSSID filter to the incoming configuration, 422 * Set the BSSID filter to the incoming configuration,
@@ -450,7 +449,7 @@ wlan_scan_setup_scan_config(wlan_private * priv,
450 } 449 }
451 } else { 450 } else {
452 pscancfgout->bsstype = adapter->scanmode; 451 pscancfgout->bsstype = adapter->scanmode;
453 numprobes = adapter->scanprobes; 452 numprobes = 0;
454 } 453 }
455 454
456 /* If the input config or adapter has the number of Probes set, add tlv */ 455 /* If the input config or adapter has the number of Probes set, add tlv */