aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless/wext-sme.c
diff options
context:
space:
mode:
authorZhao, Gang <gamerh2o@gmail.com>2014-04-09 09:28:06 +0800
committerJohannes Berg <johannes.berg@intel.com>2014-04-10 10:06:19 +0200
commit96998e3a2f6aeb6e7d91f6b1ced98d4b903d75fd (patch)
treed57029884d2dbd6708af3ec16e029038c6b23523 /net/wireless/wext-sme.c
parentmac80211: fix some missing includes (diff)
downloadlinux-dev-96998e3a2f6aeb6e7d91f6b1ced98d4b903d75fd.tar.xz
linux-dev-96998e3a2f6aeb6e7d91f6b1ced98d4b903d75fd.zip
cfg80211: remove unused wiphy argument from cfg80211_wext_freq()
cfg80211_wext_freq() is declared in wext-compat.h, but its parameter struct wiphy's declaration is not included there. As the parameter isn't used, just remove it. Signed-off-by: Zhao, Gang <gamerh2o@gmail.com> [remove parameter instead of changing to netdev] Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/wext-sme.c')
-rw-r--r--net/wireless/wext-sme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/wext-sme.c b/net/wireless/wext-sme.c
index 86c331a65664..c05a0183df31 100644
--- a/net/wireless/wext-sme.c
+++ b/net/wireless/wext-sme.c
@@ -75,7 +75,7 @@ int cfg80211_mgd_wext_siwfreq(struct net_device *dev,
if (WARN_ON(wdev->iftype != NL80211_IFTYPE_STATION))
return -EINVAL;
- freq = cfg80211_wext_freq(wdev->wiphy, wextfreq);
+ freq = cfg80211_wext_freq(wextfreq);
if (freq < 0)
return freq;