diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2007-04-21 18:56:43 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-05-08 11:51:59 -0400 |
commit | 93afe3da36440456ecec8ae9846b12729713cec7 (patch) | |
tree | 64e801cb4c6f186889befd79724f90bff3523d47 /net/ieee80211 | |
parent | f5cdf30618cf855c2043e5c0c131ebb120929864 (diff) |
[PATCH] ieee80211: include frequency in scan results
In ieee80211, the output of scan results lists channels, but not
frequencies, which are needed by NetworkManager. This patch uses
the new ieee80211_channel_to_freq routine to add the frequency to the output.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/ieee80211')
-rw-r--r-- | net/ieee80211/ieee80211_wx.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/ieee80211/ieee80211_wx.c b/net/ieee80211/ieee80211_wx.c index cee5e13bc427..523a137d49dd 100644 --- a/net/ieee80211/ieee80211_wx.c +++ b/net/ieee80211/ieee80211_wx.c | |||
@@ -89,15 +89,17 @@ static char *ieee80211_translate_scan(struct ieee80211_device *ieee, | |||
89 | start = iwe_stream_add_event(start, stop, &iwe, IW_EV_UINT_LEN); | 89 | start = iwe_stream_add_event(start, stop, &iwe, IW_EV_UINT_LEN); |
90 | } | 90 | } |
91 | 91 | ||
92 | /* Add frequency/channel */ | 92 | /* Add channel and frequency */ |
93 | iwe.cmd = SIOCGIWFREQ; | 93 | iwe.cmd = SIOCGIWFREQ; |
94 | /* iwe.u.freq.m = ieee80211_frequency(network->channel, network->mode); | ||
95 | iwe.u.freq.e = 3; */ | ||
96 | iwe.u.freq.m = network->channel; | 94 | iwe.u.freq.m = network->channel; |
97 | iwe.u.freq.e = 0; | 95 | iwe.u.freq.e = 0; |
98 | iwe.u.freq.i = 0; | 96 | iwe.u.freq.i = 0; |
99 | start = iwe_stream_add_event(start, stop, &iwe, IW_EV_FREQ_LEN); | 97 | start = iwe_stream_add_event(start, stop, &iwe, IW_EV_FREQ_LEN); |
100 | 98 | ||
99 | iwe.u.freq.m = ieee80211_channel_to_freq(ieee, network->channel); | ||
100 | iwe.u.freq.e = 6; | ||
101 | start = iwe_stream_add_event(start, stop, &iwe, IW_EV_FREQ_LEN); | ||
102 | |||
101 | /* Add encryption capability */ | 103 | /* Add encryption capability */ |
102 | iwe.cmd = SIOCGIWENCODE; | 104 | iwe.cmd = SIOCGIWENCODE; |
103 | if (network->capability & WLAN_CAPABILITY_PRIVACY) | 105 | if (network->capability & WLAN_CAPABILITY_PRIVACY) |