Input: wistron_btns - fix a memory leak in wb_module_init error path
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / wireless / chan.c
blobb01a6f6397d7be03659547f98f06569011ffac77
1 /*
2 * This file contains helper code to handle channel
3 * settings and keeping track of what is possible at
4 * any point in time.
6 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
7 */
9 #include <net/cfg80211.h>
10 #include "core.h"
12 struct ieee80211_channel *
13 rdev_freq_to_chan(struct cfg80211_registered_device *rdev,
14 int freq, enum nl80211_channel_type channel_type)
16 struct ieee80211_channel *chan;
17 struct ieee80211_sta_ht_cap *ht_cap;
19 chan = ieee80211_get_channel(&rdev->wiphy, freq);
21 /* Primary channel not allowed */
22 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED)
23 return NULL;
25 if (channel_type == NL80211_CHAN_HT40MINUS &&
26 chan->flags & IEEE80211_CHAN_NO_HT40MINUS)
27 return NULL;
28 else if (channel_type == NL80211_CHAN_HT40PLUS &&
29 chan->flags & IEEE80211_CHAN_NO_HT40PLUS)
30 return NULL;
32 ht_cap = &rdev->wiphy.bands[chan->band]->ht_cap;
34 if (channel_type != NL80211_CHAN_NO_HT) {
35 if (!ht_cap->ht_supported)
36 return NULL;
38 if (!(ht_cap->cap & IEEE80211_HT_CAP_SUP_WIDTH_20_40) ||
39 ht_cap->cap & IEEE80211_HT_CAP_40MHZ_INTOLERANT)
40 return NULL;
43 return chan;
46 int cfg80211_set_freq(struct cfg80211_registered_device *rdev,
47 struct wireless_dev *wdev, int freq,
48 enum nl80211_channel_type channel_type)
50 struct ieee80211_channel *chan;
51 int result;
53 if (wdev && wdev->iftype == NL80211_IFTYPE_MONITOR)
54 wdev = NULL;
56 if (wdev) {
57 ASSERT_WDEV_LOCK(wdev);
59 if (!netif_running(wdev->netdev))
60 return -ENETDOWN;
63 if (!rdev->ops->set_channel)
64 return -EOPNOTSUPP;
66 chan = rdev_freq_to_chan(rdev, freq, channel_type);
67 if (!chan)
68 return -EINVAL;
70 result = rdev->ops->set_channel(&rdev->wiphy,
71 wdev ? wdev->netdev : NULL,
72 chan, channel_type);
73 if (result)
74 return result;
76 if (wdev)
77 wdev->channel = chan;
79 return 0;