diff options
author | Johannes Berg <johannes.berg@intel.com> | 2013-05-15 11:44:01 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-05-24 18:02:22 -0400 |
commit | 83739b03de97049181d711c95200b94a14d3f693 (patch) | |
tree | 8a787da34dd5fcaea9da9e7bfb54f72fbe686f9e /net/wireless/util.c | |
parent | 91bf9b26fc95c505846bc2f744a73b51f2aaee1d (diff) |
cfg80211: remove some locked wrappers from sme API
By making all the API functions require wdev locking we
can clean up the API a bit, getting rid of the locking
version of each function. This also decreases the size
of cfg80211 by a small amount.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/util.c')
-rw-r--r-- | net/wireless/util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/wireless/util.c b/net/wireless/util.c index 501724257af5..74458b7f61eb 100644 --- a/net/wireless/util.c +++ b/net/wireless/util.c | |||
@@ -858,8 +858,10 @@ int cfg80211_change_iface(struct cfg80211_registered_device *rdev, | |||
858 | break; | 858 | break; |
859 | case NL80211_IFTYPE_STATION: | 859 | case NL80211_IFTYPE_STATION: |
860 | case NL80211_IFTYPE_P2P_CLIENT: | 860 | case NL80211_IFTYPE_P2P_CLIENT: |
861 | wdev_lock(dev->ieee80211_ptr); | ||
861 | cfg80211_disconnect(rdev, dev, | 862 | cfg80211_disconnect(rdev, dev, |
862 | WLAN_REASON_DEAUTH_LEAVING, true); | 863 | WLAN_REASON_DEAUTH_LEAVING, true); |
864 | wdev_unlock(dev->ieee80211_ptr); | ||
863 | break; | 865 | break; |
864 | case NL80211_IFTYPE_MESH_POINT: | 866 | case NL80211_IFTYPE_MESH_POINT: |
865 | /* mesh should be handled? */ | 867 | /* mesh should be handled? */ |