diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-10-24 14:32:21 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-10-31 19:02:30 -0400 |
commit | be3d48106c1e5d075784e5e67928a6b5ffc0f3b6 (patch) | |
tree | 40f9a5d6beefa0f6812f06368a94f0b17658f247 /net/wireless/nl80211.c | |
parent | d2372b315289aec9f565a855023c40654a5bff68 (diff) |
wireless: remove struct regdom hinting
The code needs to be split out and cleaned up, so as a
first step remove the capability, to add it back in a
subsequent patch as a separate function. Also remove the
publically facing return value of the function and the
wiphy argument. A number of internal functions go from
being generic helpers to just being used for alpha2
setting.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless/nl80211.c')
-rw-r--r-- | net/wireless/nl80211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index f82cc9aa6908..5e1d658a8b5a 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c | |||
@@ -1695,7 +1695,7 @@ static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info) | |||
1695 | return -EINVAL; | 1695 | return -EINVAL; |
1696 | #endif | 1696 | #endif |
1697 | mutex_lock(&cfg80211_drv_mutex); | 1697 | mutex_lock(&cfg80211_drv_mutex); |
1698 | r = __regulatory_hint(NULL, REGDOM_SET_BY_USER, data, NULL); | 1698 | r = __regulatory_hint(NULL, REGDOM_SET_BY_USER, data); |
1699 | mutex_unlock(&cfg80211_drv_mutex); | 1699 | mutex_unlock(&cfg80211_drv_mutex); |
1700 | return r; | 1700 | return r; |
1701 | } | 1701 | } |