aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/wireless.h5
-rw-r--r--net/mac80211/wext.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/wireless.h b/include/linux/wireless.h
index d7958f9b52cb..d426dce47e7c 100644
--- a/include/linux/wireless.h
+++ b/include/linux/wireless.h
@@ -577,18 +577,21 @@
577#define IW_AUTH_RX_UNENCRYPTED_EAPOL 8 577#define IW_AUTH_RX_UNENCRYPTED_EAPOL 8
578#define IW_AUTH_ROAMING_CONTROL 9 578#define IW_AUTH_ROAMING_CONTROL 9
579#define IW_AUTH_PRIVACY_INVOKED 10 579#define IW_AUTH_PRIVACY_INVOKED 10
580#define IW_AUTH_CIPHER_GROUP_MGMT 11
580 581
581/* IW_AUTH_WPA_VERSION values (bit field) */ 582/* IW_AUTH_WPA_VERSION values (bit field) */
582#define IW_AUTH_WPA_VERSION_DISABLED 0x00000001 583#define IW_AUTH_WPA_VERSION_DISABLED 0x00000001
583#define IW_AUTH_WPA_VERSION_WPA 0x00000002 584#define IW_AUTH_WPA_VERSION_WPA 0x00000002
584#define IW_AUTH_WPA_VERSION_WPA2 0x00000004 585#define IW_AUTH_WPA_VERSION_WPA2 0x00000004
585 586
586/* IW_AUTH_PAIRWISE_CIPHER and IW_AUTH_GROUP_CIPHER values (bit field) */ 587/* IW_AUTH_PAIRWISE_CIPHER, IW_AUTH_GROUP_CIPHER, and IW_AUTH_CIPHER_GROUP_MGMT
588 * values (bit field) */
587#define IW_AUTH_CIPHER_NONE 0x00000001 589#define IW_AUTH_CIPHER_NONE 0x00000001
588#define IW_AUTH_CIPHER_WEP40 0x00000002 590#define IW_AUTH_CIPHER_WEP40 0x00000002
589#define IW_AUTH_CIPHER_TKIP 0x00000004 591#define IW_AUTH_CIPHER_TKIP 0x00000004
590#define IW_AUTH_CIPHER_CCMP 0x00000008 592#define IW_AUTH_CIPHER_CCMP 0x00000008
591#define IW_AUTH_CIPHER_WEP104 0x00000010 593#define IW_AUTH_CIPHER_WEP104 0x00000010
594#define IW_AUTH_CIPHER_AES_CMAC 0x00000020
592 595
593/* IW_AUTH_KEY_MGMT values (bit field) */ 596/* IW_AUTH_KEY_MGMT values (bit field) */
594#define IW_AUTH_KEY_MGMT_802_1X 1 597#define IW_AUTH_KEY_MGMT_802_1X 1
diff --git a/net/mac80211/wext.c b/net/mac80211/wext.c
index 1e5b29bdb3a7..c3b2dd5706fb 100644
--- a/net/mac80211/wext.c
+++ b/net/mac80211/wext.c
@@ -927,6 +927,7 @@ static int ieee80211_ioctl_siwauth(struct net_device *dev,
927 case IW_AUTH_WPA_ENABLED: 927 case IW_AUTH_WPA_ENABLED:
928 case IW_AUTH_RX_UNENCRYPTED_EAPOL: 928 case IW_AUTH_RX_UNENCRYPTED_EAPOL:
929 case IW_AUTH_KEY_MGMT: 929 case IW_AUTH_KEY_MGMT:
930 case IW_AUTH_CIPHER_GROUP_MGMT:
930 break; 931 break;
931 case IW_AUTH_CIPHER_PAIRWISE: 932 case IW_AUTH_CIPHER_PAIRWISE:
932 if (sdata->vif.type == NL80211_IFTYPE_STATION) { 933 if (sdata->vif.type == NL80211_IFTYPE_STATION) {