From: Jussi Kivilinna Date: Fri, 12 Nov 2010 06:53:56 +0000 (+0200) Subject: cfg80211: fix WIPHY_FLAG_IBSS_RSN bit X-Git-Tag: Ubuntu-snapdragon-4.4.0-1050.54~19811^2~5^2~8 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=309075cf08ed92a7d2c0e22b7653c5daabbd7ad1;p=mirror_ubuntu-artful-kernel.git 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 Acked-by: Johannes Berg Signed-off-by: John W. Linville --- diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 2a7936d7851d..97b8b7c9b63c 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 {