staging: rtl8723bs: remove typedefs in wlan_bssdef.h
authorMarco Cesati <marcocesati@gmail.com>
Fri, 12 Mar 2021 08:26:20 +0000 (09:26 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Mar 2021 16:25:40 +0000 (17:25 +0100)
This commit fixes the following checkpatch.pl warnings:

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

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

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

Signed-off-by: Marco Cesati <marco.cesati@gmail.com>
Link: https://lore.kernel.org/r/20210312082638.25512-16-marco.cesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/include/wlan_bssdef.h

index 27cd2c5..b9bc8ba 100644 (file)
@@ -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;
@@ -137,7 +137,7 @@ 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
@@ -145,20 +145,20 @@ enum NDIS_802_11_RELOAD_DEFAULTS {
 
 
 /*  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 */