summaryrefslogtreecommitdiff
path: root/net/mac80211/cfg.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2014-01-21 20:04:00 (GMT)
committerJohannes Berg <johannes.berg@intel.com>2014-02-04 20:48:16 (GMT)
commit80e207c32bff0f9e990f4ff629c809bd20c7950a (patch)
treec10695001bf75d2c056a5006ffe2a28ebf4fa049 /net/mac80211/cfg.c
parent1ff79dfa37d36c16d91eeeebb8cc3dcba32c2c16 (diff)
downloadlinux-80e207c32bff0f9e990f4ff629c809bd20c7950a.tar.xz
mac80211: mesh: remove mesh_id check
The mesh_id is an array so can't ever be NULL, it looks like mesh_id_len check was intended instead. However, since the previous patch, cfg80211 does the check, so just remove it here. 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, 0 insertions, 3 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index e948b38..cf961a5 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -3196,9 +3196,6 @@ int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
case NL80211_IFTYPE_MESH_POINT:
ifmsh = &sdata->u.mesh;
- if (!ifmsh->mesh_id)
- return -EINVAL;
-
if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
return -EINVAL;