|
|
@@ -257,7 +257,7 @@ static bool ieee80211_prep_hw_scan(struct ieee80211_local *local)
|
|
|
if (test_bit(SCAN_HW_CANCELLED, &local->scanning))
|
|
|
return false;
|
|
|
|
|
|
- if (local->hw.flags & IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS) {
|
|
|
+ if (local->hw.flags & IEEE80211_HW_SINGLE_SCAN_ON_ALL_BANDS) {
|
|
|
for (i = 0; i < req->n_channels; i++) {
|
|
|
local->hw_scan_req->req.channels[i] = req->channels[i];
|
|
|
bands_used |= BIT(req->channels[i]->band);
|
|
|
@@ -326,7 +326,7 @@ static void __ieee80211_scan_completed(struct ieee80211_hw *hw, bool aborted)
|
|
|
return;
|
|
|
|
|
|
if (hw_scan && !aborted &&
|
|
|
- !(local->hw.flags & IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS) &&
|
|
|
+ !(local->hw.flags & IEEE80211_HW_SINGLE_SCAN_ON_ALL_BANDS) &&
|
|
|
ieee80211_prep_hw_scan(local)) {
|
|
|
int rc;
|
|
|
|
|
|
@@ -520,7 +520,7 @@ static int __ieee80211_start_scan(struct ieee80211_sub_if_data *sdata,
|
|
|
|
|
|
local->hw_scan_ies_bufsize = local->scan_ies_len + req->ie_len;
|
|
|
|
|
|
- if (local->hw.flags & IEEE80211_SINGLE_HW_SCAN_ON_ALL_BANDS) {
|
|
|
+ if (local->hw.flags & IEEE80211_HW_SINGLE_SCAN_ON_ALL_BANDS) {
|
|
|
int i, n_bands = 0;
|
|
|
u8 bands_counted = 0;
|
|
|
|