]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wlan-ng: avoid new typedef: p80211pstr32_t
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Sun, 25 Sep 2016 13:34:56 +0000 (15:34 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Sep 2016 17:53:06 +0000 (19:53 +0200)
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: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/p80211netdev.h
drivers/staging/wlan-ng/p80211types.h

index 138acdbfa42606e61ef06ac5715c459987727441..222f736ba7aee03ccb111a320f84103eca0cae07 100644 (file)
@@ -191,7 +191,7 @@ struct wlandevice {
 
        /* 802.11 State */
        u8 bssid[WLAN_BSSID_LEN];
-       p80211pstr32_t ssid;
+       struct p80211pstr32 ssid;
        u32 macmode;
        int linkstatus;
 
index b77f8f026f4949ef647cd9845ae48674ff302834..3d5e81be935b0ba57d5da31ad8331f6f30b2ea6b 100644 (file)
@@ -243,10 +243,10 @@ struct p80211pstr14 {
 } __packed;
 
 /* pascal string for ssid */
-typedef struct p80211pstr32 {
+struct p80211pstr32 {
        u8 len;
        u8 data[MAXLEN_PSTR32];
-} __packed p80211pstr32_t;
+} __packed;
 
 /* MAC address array */
 typedef struct p80211macarray {
@@ -298,7 +298,7 @@ typedef struct p80211item_pstr32 {
        u32 did;
        u16 status;
        u16 len;
-       p80211pstr32_t data;
+       struct p80211pstr32 data;
 } __packed p80211item_pstr32_t;
 
 /* message data item for OCTETSTR, DISPLAYSTR */