summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJussi Kivilinna <jussi.kivilinna@mbnet.fi>2010-11-12 08:53:56 +0200
committerJohn W. Linville <linville@tuxdriver.com>2010-11-15 15:00:42 -0500
commit309075cf08ed92a7d2c0e22b7653c5daabbd7ad1 (patch)
tree65b181daa85a0b7e92460a1f71139ff50de07eb4
parent62370e2b9376ea7b76e0423de28ccb322c17e2da (diff)
downloadop-kernel-dev-309075cf08ed92a7d2c0e22b7653c5daabbd7ad1.zip
op-kernel-dev-309075cf08ed92a7d2c0e22b7653c5daabbd7ad1.tar.gz
cfg80211: fix WIPHY_FLAG_IBSS_RSN bit
WIPHY_FLAG_IBSS_RSN is BIT(7) as is WIPHY_FLAG_CONTROL_PORT_PROTOCOL. Change to BIT(8). Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> Acked-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--include/net/cfg80211.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 2a7936d..97b8b7c 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -1355,7 +1355,7 @@ enum wiphy_flags {
WIPHY_FLAG_4ADDR_AP = BIT(5),
WIPHY_FLAG_4ADDR_STATION = BIT(6),
WIPHY_FLAG_CONTROL_PORT_PROTOCOL = BIT(7),
- WIPHY_FLAG_IBSS_RSN = BIT(7),
+ WIPHY_FLAG_IBSS_RSN = BIT(8),
};
struct mac_address {
OpenPOWER on IntegriCloud