summaryrefslogtreecommitdiff
path: root/net/mac80211/cfg.c
diff options
context:
space:
mode:
authorChun-Yeow Yeoh <yeohchunyeow@gmail.com>2013-01-10 23:31:54 +0800
committerJohannes Berg <johannes.berg@intel.com>2013-01-16 15:25:27 +0100
commitee1f668136b2fb6640ee2d54c2a525ea41f98211 (patch)
tree31a25b27cf15b5fcb98775c87a25ce159e1654c3 /net/mac80211/cfg.c
parent8f21b0adfe95907926da1bb0bcd3382b13d0143d (diff)
downloadlinux-3.10-ee1f668136b2fb6640ee2d54c2a525ea41f98211.tar.gz
linux-3.10-ee1f668136b2fb6640ee2d54c2a525ea41f98211.tar.bz2
linux-3.10-ee1f668136b2fb6640ee2d54c2a525ea41f98211.zip
mac80211: allow disable power save in mesh
Allow mesh interface to disable the power save which is by default turn on in certain chipset. Testing with 2 units of ZCN-1523H-5-16 featuring AR9280 chipset which have power save enabled by default. Constant reset if the average signal of the peer mesh STA is below -80 dBm and power save is enabled. Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r--net/mac80211/cfg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 7d290bce092..817992b51fe 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -2232,7 +2232,8 @@ static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
- if (sdata->vif.type != NL80211_IFTYPE_STATION)
+ if (sdata->vif.type != NL80211_IFTYPE_STATION &&
+ sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
return -EOPNOTSUPP;
if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))