diff options
author | Sergio Paracuellos <sergio.paracuellos@gmail.com> | 2016-09-25 15:34:54 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-25 19:53:06 +0200 |
commit | 2816c008985fe2da20a40ca81d8d9232c9e7b035 (patch) | |
tree | cc18e81c864e9fb27e559dc7f4976759f923737b /drivers | |
parent | 94a29147beb0a777a62230cd4c5b1d3fb080ab29 (diff) | |
download | lwn-2816c008985fe2da20a40ca81d8d9232c9e7b035.tar.gz lwn-2816c008985fe2da20a40ca81d8d9232c9e7b035.zip |
staging: wlan-ng: avoid new typedef: p80211pstr6_t
This patch fixes the following checkpatch.pl warning in p80211types.h:
WARNING: do not add new typedefs
It applies for typedef p80211pstr6_t
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-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 edf44c3b0337..892e1b758ca9 100644 --- a/drivers/staging/wlan-ng/p80211types.h +++ b/drivers/staging/wlan-ng/p80211types.h @@ -231,10 +231,10 @@ struct p80211pstr255 { } __packed; /* pascal string for macaddress and bssid */ -typedef struct p80211pstr6 { +struct p80211pstr6 { u8 len; u8 data[MAXLEN_PSTR6]; -} __packed p80211pstr6_t; +} __packed; /* pascal string for channel list */ typedef struct p80211pstr14 { @@ -282,7 +282,7 @@ typedef struct p80211item_pstr6 { u32 did; u16 status; u16 len; - p80211pstr6_t data; + struct p80211pstr6 data; } __packed p80211item_pstr6_t; /* message data item for OCTETSTR, DISPLAYSTR */ |