Skip to content

Commit

Permalink
staging: rtl8723bs: remove typedefs in wlan_bssdef.h
Browse files Browse the repository at this point in the history
This commit fixes the following checkpatch.pl warnings:

    WARNING: do not add new typedefs
    torvalds#130: FILE: include/wlan_bssdef.h:130:
    +typedef struct _NDIS_802_11_ASSOCIATION_INFORMATION {

    WARNING: do not add new typedefs
    torvalds#148: FILE: include/wlan_bssdef.h:148:
    +typedef struct _NDIS_802_11_KEY {

    WARNING: do not add new typedefs
    torvalds#157: FILE: include/wlan_bssdef.h:157:
    +typedef struct _NDIS_802_11_REMOVE_KEY {

Signed-off-by: Marco Cesati <marco.cesati@gmail.com>
  • Loading branch information
Marco Cesati authored and intel-lab-lkp committed Mar 12, 2021
1 parent 35a3090 commit 06a3dae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions drivers/staging/rtl8723bs/include/wlan_bssdef.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ struct ndis_801_11_ai_resfi {
u16 AssociationId;
};

typedef struct _NDIS_802_11_ASSOCIATION_INFORMATION {
struct NDIS_802_11_ASSOCIATION_INFORMATION {
u32 Length;
u16 AvailableRequestFixedIEs;
struct ndis_802_11_ai_reqfi RequestFixedIEs;
Expand All @@ -137,28 +137,28 @@ typedef struct _NDIS_802_11_ASSOCIATION_INFORMATION {
struct ndis_801_11_ai_resfi ResponseFixedIEs;
u32 ResponseIELength;
u32 OffsetResponseIEs;
} NDIS_802_11_ASSOCIATION_INFORMATION, *PNDIS_802_11_ASSOCIATION_INFORMATION;
};

enum NDIS_802_11_RELOAD_DEFAULTS {
Ndis802_11ReloadWEPKeys
};


/* Key mapping keys require a BSSID */
typedef struct _NDIS_802_11_KEY {
struct NDIS_802_11_KEY {
u32 Length; /* Length of this structure */
u32 KeyIndex;
u32 KeyLength; /* length of key in bytes */
NDIS_802_11_MAC_ADDRESS BSSID;
unsigned long long KeyRSC;
u8 KeyMaterial[32]; /* variable length depending on above field */
} NDIS_802_11_KEY, *PNDIS_802_11_KEY;
};

typedef struct _NDIS_802_11_REMOVE_KEY {
struct NDIS_802_11_REMOVE_KEY {
u32 Length; /* Length of this structure */
u32 KeyIndex;
NDIS_802_11_MAC_ADDRESS BSSID;
} NDIS_802_11_REMOVE_KEY, *PNDIS_802_11_REMOVE_KEY;
};

struct ndis_802_11_wep {
u32 Length; /* Length of this structure */
Expand Down

0 comments on commit 06a3dae

Please sign in to comment.