aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/main.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2009-02-10 21:26:01 +0100
committerJohn W. Linville <linville@tuxdriver.com>2009-02-13 13:45:59 -0500
commit9a03d6d7a8698f26f8ef02dd3c91f8f68c4edcc7 (patch)
treee146c165c361b208e8ba41452acff0c75b84d68a /net/mac80211/main.c
parentmac80211: use cfg80211s BSS infrastructure (diff)
downloadlinux-dev-9a03d6d7a8698f26f8ef02dd3c91f8f68c4edcc7.tar.xz
linux-dev-9a03d6d7a8698f26f8ef02dd3c91f8f68c4edcc7.zip
mac80211: calculate wstats_flags on the fly
Just to make wext.c more self-contained. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/main.c')
-rw-r--r--net/mac80211/main.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c
index b4973a1b6595..5667f4e8067f 100644
--- a/net/mac80211/main.c
+++ b/net/mac80211/main.c
@@ -905,14 +905,6 @@ int ieee80211_register_hw(struct ieee80211_hw *hw)
local->hw.conf.listen_interval = local->hw.max_listen_interval;
- local->wstats_flags |= local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
- IEEE80211_HW_SIGNAL_DBM) ?
- IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID;
- local->wstats_flags |= local->hw.flags & IEEE80211_HW_NOISE_DBM ?
- IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID;
- if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
- local->wstats_flags |= IW_QUAL_DBM;
-
result = sta_info_start(local);
if (result < 0)
goto fail_sta_info;