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>
This commit is contained in:
committed by
John W. Linville
parent
62370e2b93
commit
309075cf08
@@ -1355,7 +1355,7 @@ enum wiphy_flags {
|
|||||||
WIPHY_FLAG_4ADDR_AP = BIT(5),
|
WIPHY_FLAG_4ADDR_AP = BIT(5),
|
||||||
WIPHY_FLAG_4ADDR_STATION = BIT(6),
|
WIPHY_FLAG_4ADDR_STATION = BIT(6),
|
||||||
WIPHY_FLAG_CONTROL_PORT_PROTOCOL = BIT(7),
|
WIPHY_FLAG_CONTROL_PORT_PROTOCOL = BIT(7),
|
||||||
WIPHY_FLAG_IBSS_RSN = BIT(7),
|
WIPHY_FLAG_IBSS_RSN = BIT(8),
|
||||||
};
|
};
|
||||||
|
|
||||||
struct mac_address {
|
struct mac_address {
|
||||||
|
Reference in New Issue
Block a user