Commit 758f140d authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

staging: wlan-ng: avoid new typedef: p80211pstr32_t

This patch fixes the following checkpatch.pl warning in p80211types.h:
WARNING: do not add new typedefs

It applies for typedef p80211pstr32_t
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5d005584
...@@ -191,7 +191,7 @@ struct wlandevice { ...@@ -191,7 +191,7 @@ struct wlandevice {
/* 802.11 State */ /* 802.11 State */
u8 bssid[WLAN_BSSID_LEN]; u8 bssid[WLAN_BSSID_LEN];
p80211pstr32_t ssid; struct p80211pstr32 ssid;
u32 macmode; u32 macmode;
int linkstatus; int linkstatus;
......
...@@ -243,10 +243,10 @@ struct p80211pstr14 { ...@@ -243,10 +243,10 @@ struct p80211pstr14 {
} __packed; } __packed;
/* pascal string for ssid */ /* pascal string for ssid */
typedef struct p80211pstr32 { struct p80211pstr32 {
u8 len; u8 len;
u8 data[MAXLEN_PSTR32]; u8 data[MAXLEN_PSTR32];
} __packed p80211pstr32_t; } __packed;
/* MAC address array */ /* MAC address array */
typedef struct p80211macarray { typedef struct p80211macarray {
...@@ -298,7 +298,7 @@ typedef struct p80211item_pstr32 { ...@@ -298,7 +298,7 @@ typedef struct p80211item_pstr32 {
u32 did; u32 did;
u16 status; u16 status;
u16 len; u16 len;
p80211pstr32_t data; struct p80211pstr32 data;
} __packed p80211item_pstr32_t; } __packed p80211item_pstr32_t;
/* message data item for OCTETSTR, DISPLAYSTR */ /* message data item for OCTETSTR, DISPLAYSTR */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment