aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn W. Linville <linville@tuxdriver.com>2010-10-06 16:40:40 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-10-06 16:40:40 -0400
commit494486f8fd0eec956c5df823581df5dcf5409a6f (patch)
tree0cd53a6c0f61a69fbcb3cf339662fa1f4bd65cec
parent3207390a8b58bfc1335750f91cf6783c48ca19ca (diff)
mac80211: avoid uninitialized var warning in ieee80211_scan_cancel
net/mac80211/scan.c: In function ‘ieee80211_scan_cancel’: net/mac80211/scan.c:794: warning: ‘finish’ may be used uninitialized in this function Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--net/mac80211/scan.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/mac80211/scan.c b/net/mac80211/scan.c
index 80e017df5f3..523db930dab 100644
--- a/net/mac80211/scan.c
+++ b/net/mac80211/scan.c
@@ -791,7 +791,8 @@ int ieee80211_request_internal_scan(struct ieee80211_sub_if_data *sdata,
791 */ 791 */
792void ieee80211_scan_cancel(struct ieee80211_local *local) 792void ieee80211_scan_cancel(struct ieee80211_local *local)
793{ 793{
794 bool abortscan, finish; 794 bool abortscan;
795 bool finish = false;
795 796
796 /* 797 /*
797 * We are only canceling software scan, or deferred scan that was not 798 * We are only canceling software scan, or deferred scan that was not
@@ -818,7 +819,7 @@ void ieee80211_scan_cancel(struct ieee80211_local *local)
818 if (abortscan) { 819 if (abortscan) {
819 /* The scan is canceled, but stop work from being pending */ 820 /* The scan is canceled, but stop work from being pending */
820 cancel_delayed_work_sync(&local->scan_work); 821 cancel_delayed_work_sync(&local->scan_work);
821 if (finish)
822 __ieee80211_scan_completed_finish(&local->hw, false);
823 } 822 }
823 if (finish)
824 __ieee80211_scan_completed_finish(&local->hw, false);
824} 825}