]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: r8188eu: remove some structure definitions from wlan_bssdef.h
authorIvan Safonov <insafonov@gmail.com>
Wed, 24 Aug 2016 08:22:44 +0000 (15:22 +0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Sep 2016 16:01:41 +0000 (18:01 +0200)
ndis_802_11_ai_reqfi, ndis_802_11_ai_resfi, ndis_802_11_assoc_info,
ndis_802_11_remove_key, ndis_802_11_auth_req, ndis_802_11_status_ind,
ndis_802_11_auth_evt, ndis_802_11_test, pmkid_candidate, ndis_802_11_pmkid_list,
ndis_802_11_auth_encrypt and ndis_802_11_cap structures are not used.

Signed-off-by: Ivan Safonov <insafonov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/include/wlan_bssdef.h

index 560966cd7dfeacfa9fa563231941fe6df330e57f..e1931dd04da00323d98203904a00251b4767b44b 100644 (file)
@@ -123,40 +123,10 @@ enum ndis_802_11_wep_status {
 #define NDIS_802_11_AI_RESFI_STATUSCODE        2
 #define NDIS_802_11_AI_RESFI_ASSOCIATIONID     4
 
-struct ndis_802_11_ai_reqfi {
-    u16 Capabilities;
-    u16 ListenInterval;
-    unsigned char CurrentAPAddress[ETH_ALEN];
-};
-
-struct ndis_802_11_ai_resfi {
-    u16 Capabilities;
-    u16 StatusCode;
-    u16 AssociationId;
-};
-
-struct ndis_802_11_assoc_info {
-       u32  Length;
-       u16 AvailableRequestFixedIEs;
-       struct ndis_802_11_ai_reqfi    RequestFixedIEs;
-       u32  RequestIELength;
-       u32  OffsetRequestIEs;
-       u16 AvailableResponseFixedIEs;
-       struct ndis_802_11_ai_resfi    ResponseFixedIEs;
-       u32  ResponseIELength;
-       u32  OffsetResponseIEs;
-};
-
 enum ndis_802_11_reload_def {
        Ndis802_11ReloadWEPKeys
 };
 
-struct ndis_802_11_remove_key {
-       u32                   Length;        /*  Length */
-       u32                   KeyIndex;
-       unsigned char BSSID[ETH_ALEN];
-};
-
 struct ndis_802_11_wep {
        u32     Length;        /*  Length of this structure */
        u32     KeyIndex;      /*  0 is the per-client key,
@@ -165,12 +135,6 @@ struct ndis_802_11_wep {
        u8     KeyMaterial[16];/*  variable len depending on above field */
 };
 
-struct ndis_802_11_auth_req {
-       u32 Length;            /*  Length of structure */
-       unsigned char Bssid[ETH_ALEN];
-       u32 Flags;
-};
-
 enum ndis_802_11_status_type {
        Ndis802_11StatusType_Authentication,
        Ndis802_11StatusType_MediaStreamMode,
@@ -179,10 +143,6 @@ enum ndis_802_11_status_type {
                                    * an upper bound */
 };
 
-struct ndis_802_11_status_ind {
-       enum ndis_802_11_status_type StatusType;
-};
-
 /*  mask for authentication/integrity fields */
 #define NDIS_802_11_AUTH_REQUEST_AUTH_FIELDS           0x0f
 #define NDIS_802_11_AUTH_REQUEST_REAUTH                        0x01
@@ -193,21 +153,6 @@ struct ndis_802_11_status_ind {
 /*  MIC check time, 60 seconds. */
 #define MIC_CHECK_TIME 60000000
 
-struct ndis_802_11_auth_evt {
-       struct ndis_802_11_status_ind       Status;
-       struct ndis_802_11_auth_req  Request[1];
-};
-
-struct ndis_802_11_test {
-       u32 Length;
-       u32 Type;
-       union {
-               struct ndis_802_11_auth_evt AuthenticationEvent;
-               NDIS_802_11_RSSI RssiTrigger;
-       } tt;
-};
-
-
 #ifndef Ndis802_11APMode
 #define Ndis802_11APMode (Ndis802_11InfrastructureMax+1)
 #endif
@@ -297,32 +242,4 @@ enum UAPSD_MAX_SP {
 #define NUM_PRE_AUTH_KEY 16
 #define NUM_PMKID_CACHE NUM_PRE_AUTH_KEY
 
-/*
-*      WPA2
-*/
-
-struct pmkid_candidate {
-       unsigned char BSSID[ETH_ALEN];
-       u32 Flags;
-};
-
-struct ndis_802_11_pmkid_list {
-       u32 Version;       /*  Version of the structure */
-       u32 NumCandidates; /*  No. of pmkid candidates */
-       struct pmkid_candidate CandidateList[1];
-};
-
-struct ndis_802_11_auth_encrypt {
-       enum ndis_802_11_auth_mode AuthModeSupported;
-       enum ndis_802_11_wep_status EncryptStatusSupported;
-};
-
-struct ndis_802_11_cap {
-       u32  Length;
-       u32  Version;
-       u32  NoOfPMKIDs;
-       u32  NoOfAuthEncryptPairsSupported;
-       struct ndis_802_11_auth_encrypt AuthenticationEncryptionSupported[1];
-};
-
 #endif /* ifndef WLAN_BSSDEF_H_ */