]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: wlang-ng: avoid new typedef: hfa384x_rx_frame_t
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Wed, 28 Sep 2016 18:19:06 +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_rx_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 cb416ce86a132f04f87ec5da72bbc24dc1ce07f9..d663faf3f06f5c81a324a726fe57147e823b878f 100644 (file)
@@ -539,7 +539,7 @@ struct hfa384x_tx_frame {
  *--------------------------------------------------------------------
  */
 /*-- Communication Frame: Receive Frame Structure --*/
-typedef struct hfa384x_rx_frame {
+struct hfa384x_rx_frame {
        /*-- MAC rx descriptor (hfa384x byte order) --*/
        u16 status;
        u32 time;
@@ -564,7 +564,7 @@ typedef struct hfa384x_rx_frame {
        u8 dest_addr[6];
        u8 src_addr[6];
        u16 data_length;        /* IEEE? (big endian) format */
-} __packed hfa384x_rx_frame_t;
+} __packed;
 /*--------------------------------------------------------------------
  * Communication Frames: Field Masks for Receive Frames
  *--------------------------------------------------------------------
@@ -856,7 +856,7 @@ typedef struct hfa384x_usb_rmemreq {
 /* Response (bulk IN) packet contents */
 
 typedef struct hfa384x_usb_rxfrm {
-       hfa384x_rx_frame_t desc;
+       struct hfa384x_rx_frame desc;
        u8 data[WLAN_DATA_MAXLEN];
 } __packed hfa384x_usb_rxfrm_t;
 
index 044ca4d9ac9a75893f346d80058b66f559da593e..f1809af0b7601435fa7f950f81aa05a896c25fc0 100644 (file)
@@ -3346,7 +3346,7 @@ static void hfa384x_usbin_rx(struct wlandevice *wlandev, struct sk_buff *skb)
                hdrlen = p80211_headerlen(fc);
 
                /* Pull off the descriptor */
-               skb_pull(skb, sizeof(hfa384x_rx_frame_t));
+               skb_pull(skb, sizeof(struct hfa384x_rx_frame));
 
                /* Now shunt the header block up against the data block
                 * with an "overlapping" copy
@@ -3419,7 +3419,7 @@ static void hfa384x_usbin_rx(struct wlandevice *wlandev, struct sk_buff *skb)
 static void hfa384x_int_rxmonitor(struct wlandevice *wlandev,
                                  hfa384x_usb_rxfrm_t *rxfrm)
 {
-       hfa384x_rx_frame_t *rxdesc = &(rxfrm->desc);
+       struct hfa384x_rx_frame *rxdesc = &(rxfrm->desc);
        unsigned int hdrlen = 0;
        unsigned int datalen = 0;
        unsigned int skblen = 0;