|
@@ -4099,18 +4099,17 @@ ieee80211_sta_scan_result(struct net_device *dev,
|
|
|
|
|
|
memset(&iwe, 0, sizeof(iwe));
|
|
|
iwe.cmd = SIOCGIWFREQ;
|
|
|
- iwe.u.freq.m = bss->freq;
|
|
|
- iwe.u.freq.e = 6;
|
|
|
+ iwe.u.freq.m = ieee80211_frequency_to_channel(bss->freq);
|
|
|
+ iwe.u.freq.e = 0;
|
|
|
current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe,
|
|
|
IW_EV_FREQ_LEN);
|
|
|
|
|
|
memset(&iwe, 0, sizeof(iwe));
|
|
|
iwe.cmd = SIOCGIWFREQ;
|
|
|
- iwe.u.freq.m = ieee80211_frequency_to_channel(bss->freq);
|
|
|
- iwe.u.freq.e = 0;
|
|
|
+ iwe.u.freq.m = bss->freq;
|
|
|
+ iwe.u.freq.e = 6;
|
|
|
current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe,
|
|
|
IW_EV_FREQ_LEN);
|
|
|
-
|
|
|
memset(&iwe, 0, sizeof(iwe));
|
|
|
iwe.cmd = IWEVQUAL;
|
|
|
iwe.u.qual.qual = bss->signal;
|