diff options
author | Sergio Paracuellos <sergio.paracuellos@gmail.com> | 2016-09-25 09:35:04 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-25 13:54:01 -0400 |
commit | 3636ab01fd8e846892844dcf6170244b1d6ace0b (patch) | |
tree | cac1cd872a08abcf6e89d7915bf01b173a784f85 | |
parent | 6a50b5afac396a708fa2cf18dd806603e90aad76 (diff) |
staging: wlan-ng: avoid new typedef: p80211item_pstr255_t
This patch fixes the following checkpatch.pl warning in p80211types.h:
WARNING: do not add new typedefs
It applies for typedef p80211item_pstr255_t
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wlan-ng/p80211types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wlan-ng/p80211types.h b/drivers/staging/wlan-ng/p80211types.h index 6c877292c209..dd56815ae920 100644 --- a/drivers/staging/wlan-ng/p80211types.h +++ b/drivers/staging/wlan-ng/p80211types.h | |||
@@ -302,12 +302,12 @@ struct p80211item_pstr32 { | |||
302 | } __packed; | 302 | } __packed; |
303 | 303 | ||
304 | /* message data item for OCTETSTR, DISPLAYSTR */ | 304 | /* message data item for OCTETSTR, DISPLAYSTR */ |
305 | typedef struct p80211item_pstr255 { | 305 | struct p80211item_pstr255 { |
306 | u32 did; | 306 | u32 did; |
307 | u16 status; | 307 | u16 status; |
308 | u16 len; | 308 | u16 len; |
309 | struct p80211pstr255 data; | 309 | struct p80211pstr255 data; |
310 | } __packed p80211item_pstr255_t; | 310 | } __packed; |
311 | 311 | ||
312 | /* message data item for UNK 392, namely mib items */ | 312 | /* message data item for UNK 392, namely mib items */ |
313 | typedef struct p80211item_unk392 { | 313 | typedef struct p80211item_unk392 { |