]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
staging: wlang-ng: avoid new typedef: hfa384x_tx_frame_t
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Wed, 28 Sep 2016 18:19:05 +0000 (20:19 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 2 Oct 2016 15:00:48 +0000 (17:00 +0200)
This patch fixes the following checkpatch.pl warning in hfa384x.h:
WARNING: do not add new typedefs

It applies for typedef hfa384x_tx_frame_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/hfa384x_usb.c

index 13902363a34db6332c2aaab20a7a3cbf3451f9d5..cb416ce86a132f04f87ec5da72bbc24dc1ce07f9 100644 (file)
@@ -474,7 +474,7 @@ struct hfa384x_dbmcommsquality {
  *--------------------------------------------------------------------
  */
 /*-- Communication Frame: Transmit Frame Structure --*/
-typedef struct hfa384x_tx_frame {
+struct hfa384x_tx_frame {
        u16 status;
        u16 reserved1;
        u16 reserved2;
@@ -499,7 +499,7 @@ typedef struct hfa384x_tx_frame {
        u8 dest_addr[6];
        u8 src_addr[6];
        u16 data_length;        /* big endian format */
-} __packed hfa384x_tx_frame_t;
+} __packed;
 /*--------------------------------------------------------------------
  * Communication Frames: Field Masks for Transmit Frames
  *--------------------------------------------------------------------
@@ -809,7 +809,7 @@ typedef struct hfa384x_InfFrame {
 /* Request (bulk OUT) packet contents */
 
 typedef struct hfa384x_usb_txfrm {
-       hfa384x_tx_frame_t desc;
+       struct hfa384x_tx_frame desc;
        u8 data[WLAN_DATA_MAXLEN];
 } __packed hfa384x_usb_txfrm_t;
 
index 9c2931171ec27c2f457bdc80cbdf0167cbf99955..044ca4d9ac9a75893f346d80058b66f559da593e 100644 (file)
@@ -2566,7 +2566,7 @@ int hfa384x_drvr_txframe(hfa384x_t *hw, struct sk_buff *skb,
                         union p80211_hdr *p80211_hdr,
                         struct p80211_metawep *p80211_wep)
 {
-       int usbpktlen = sizeof(hfa384x_tx_frame_t);
+       int usbpktlen = sizeof(struct hfa384x_tx_frame);
        int result;
        int ret;
        char *ptr;