diff options
author | Sergio Paracuellos <sergio.paracuellos@gmail.com> | 2016-09-25 09:34:53 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-25 13:53:06 -0400 |
commit | 94a29147beb0a777a62230cd4c5b1d3fb080ab29 (patch) | |
tree | d4762f7fd6022f8b0ab4364ac2b84ca0a49e1e19 | |
parent | 3fd1e3fcb929e6b51598f76cfc0615259b8cfe54 (diff) |
staging: wlan-ng: avoid new typedef: p80211pstr255_t
This patch fixes the following checkpatch.pl warning in p80211types.h:
WARNING: do not add new typedefs
It applies for typedef p80211pstr255_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 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/wlan-ng/p80211types.h b/drivers/staging/wlan-ng/p80211types.h index 0908510621f8..edf44c3b0337 100644 --- a/drivers/staging/wlan-ng/p80211types.h +++ b/drivers/staging/wlan-ng/p80211types.h | |||
@@ -225,10 +225,10 @@ struct p80211pstrd { | |||
225 | } __packed; | 225 | } __packed; |
226 | 226 | ||
227 | /* Maximum pascal string */ | 227 | /* Maximum pascal string */ |
228 | typedef struct p80211pstr255 { | 228 | struct p80211pstr255 { |
229 | u8 len; | 229 | u8 len; |
230 | u8 data[MAXLEN_PSTR255]; | 230 | u8 data[MAXLEN_PSTR255]; |
231 | } __packed p80211pstr255_t; | 231 | } __packed; |
232 | 232 | ||
233 | /* pascal string for macaddress and bssid */ | 233 | /* pascal string for macaddress and bssid */ |
234 | typedef struct p80211pstr6 { | 234 | typedef struct p80211pstr6 { |
@@ -306,7 +306,7 @@ typedef struct p80211item_pstr255 { | |||
306 | u32 did; | 306 | u32 did; |
307 | u16 status; | 307 | u16 status; |
308 | u16 len; | 308 | u16 len; |
309 | p80211pstr255_t data; | 309 | struct p80211pstr255 data; |
310 | } __packed p80211item_pstr255_t; | 310 | } __packed p80211item_pstr255_t; |
311 | 311 | ||
312 | /* message data item for UNK 392, namely mib items */ | 312 | /* message data item for UNK 392, namely mib items */ |