diff options
author | John W. Linville <linville@tuxdriver.com> | 2010-06-29 13:55:04 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-06-29 13:55:04 -0400 |
commit | ff3074a4dd6c0963e6a7eaac48175a62f589c143 (patch) | |
tree | 44058b9aaf1e3c9dc15531847f5c748821eeccfb /net/mac80211 | |
parent | 38bdb650f902d275d6b2f9c2d8247fd960525583 (diff) |
mac80211: remove unnecessary check in ieee80211_dump_survey
This check is duplicated in drv_get_survey.
Reported-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/cfg.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index f4efbfa4f237..e55970bf2ba0 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c | |||
@@ -413,9 +413,6 @@ static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev, | |||
413 | { | 413 | { |
414 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); | 414 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
415 | 415 | ||
416 | if (!local->ops->get_survey) | ||
417 | return -EOPNOTSUPP; | ||
418 | |||
419 | return drv_get_survey(local, idx, survey); | 416 | return drv_get_survey(local, idx, survey); |
420 | } | 417 | } |
421 | 418 | ||