]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: wlang-ng: avoid new typedef: hfa384x_bytestr32_t
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Wed, 28 Sep 2016 18:18:54 +0000 (20:18 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 2 Oct 2016 14:59:58 +0000 (16:59 +0200)
This patch fixes the following checkpatch.pl warning in hfa384x.h:
WARNING: do not add new typedefs

It applies for typedef hfa384x_bytestr32_t

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/hfa384x.h
drivers/staging/wlan-ng/prism2sta.c

index 4cf47963a176bec623f7556a15eecb9065d683b8..5df4e1f0333d35ece8b6b1f2a2b554bf0bc07605 100644 (file)
@@ -356,10 +356,10 @@ struct hfa384x_bytestr {
        u8 data[0];
 } __packed;
 
-typedef struct hfa384x_bytestr32 {
+struct hfa384x_bytestr32 {
        u16 len;
        u8 data[32];
-} __packed hfa384x_bytestr32_t;
+} __packed;
 
 /*--------------------------------------------------------------------
 Configuration Record Structures:
@@ -398,7 +398,7 @@ Configuration Record Structures:
 typedef struct hfa384x_HostScanRequest_data {
        u16 channelList;
        u16 txRate;
-       hfa384x_bytestr32_t ssid;
+       struct hfa384x_bytestr32 ssid;
 } __packed hfa384x_HostScanRequest_data_t;
 
 /*-- Configuration Record: JoinRequest (data portion only) --*/
@@ -643,7 +643,7 @@ typedef struct hfa384x_ScanResultSub {
        u8 bssid[WLAN_BSSID_LEN];
        u16 bcnint;
        u16 capinfo;
-       hfa384x_bytestr32_t ssid;
+       struct hfa384x_bytestr32 ssid;
        u8 supprates[10];       /* 802.11 info element */
        u16 proberesp_rate;
 } __packed hfa384x_ScanResultSub_t;
@@ -678,7 +678,7 @@ typedef struct hfa384x_HScanResultSub {
        u8 bssid[WLAN_BSSID_LEN];
        u16 bcnint;
        u16 capinfo;
-       hfa384x_bytestr32_t ssid;
+       struct hfa384x_bytestr32 ssid;
        u8 supprates[10];       /* 802.11 info element */
        u16 proberesp_rate;
        u16 atim;
index 474e29f3d2e9cd81e559077db1b08136b9511fcd..098cb579bd8e2b68923790047d092eda32bd6e3f 100644 (file)
@@ -1173,7 +1173,7 @@ void prism2sta_processing_defer(struct work_struct *data)
 {
        hfa384x_t *hw = container_of(data, struct hfa384x, link_bh);
        struct wlandevice *wlandev = hw->wlandev;
-       hfa384x_bytestr32_t ssid;
+       struct hfa384x_bytestr32 ssid;
        int result;
 
        /* First let's process the auth frames */
@@ -1916,7 +1916,7 @@ void prism2sta_commsqual_defer(struct work_struct *data)
 {
        hfa384x_t *hw = container_of(data, struct hfa384x, commsqual_bh);
        struct wlandevice *wlandev = hw->wlandev;
-       hfa384x_bytestr32_t ssid;
+       struct hfa384x_bytestr32 ssid;
        struct p80211msg_dot11req_mibget msg;
        struct p80211item_uint32 *mibitem = (struct p80211item_uint32 *)
                                                &msg.mibattribute.data;