summaryrefslogtreecommitdiff
path: root/net/mac80211/scan.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2008-10-28 10:12:57 (GMT)
committerJohn W. Linville <linville@tuxdriver.com>2008-11-10 20:10:16 (GMT)
commit1239cd58d237fa6ad501acaec8776262a5784ec8 (patch)
tree13f991cfc6a77e52a336aa75a94d94f5fd919f68 /net/mac80211/scan.c
parent97c8b013da7a8ec7aa0a192489d4e7a33c4127fc (diff)
downloadlinux-fsl-qoriq-1239cd58d237fa6ad501acaec8776262a5784ec8.tar.xz
wireless: move mesh config length constant
This is a constant from the 802.11 specification. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Cc: Javier Cardona <javier@cozybit.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/scan.c')
-rw-r--r--net/mac80211/scan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/scan.c b/net/mac80211/scan.c
index 7372d7a..f5c7c33 100644
--- a/net/mac80211/scan.c
+++ b/net/mac80211/scan.c
@@ -159,7 +159,7 @@ ieee80211_rx_mesh_bss_add(struct ieee80211_local *local, u8 *mesh_id, int mesh_i
{
struct ieee80211_bss *bss;
- if (mesh_config_len != MESH_CFG_LEN)
+ if (mesh_config_len != IEEE80211_MESH_CONFIG_LEN)
return NULL;
bss = kzalloc(sizeof(*bss), GFP_ATOMIC);