diff options
author | Sergio Paracuellos <sergio.paracuellos@gmail.com> | 2016-09-28 20:19:32 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-10-02 17:03:52 +0200 |
commit | a988c9f3ea35e3a6b532ebe30d2724c55b427c9d (patch) | |
tree | 4c27d3de2de914045cc589adfa2e856e5326e543 | |
parent | staging: wlang-ng: avoid new typedef: hfa384x_usb_wridresp_t (diff) | |
download | linux-a988c9f3ea35e3a6b532ebe30d2724c55b427c9d.tar.xz linux-a988c9f3ea35e3a6b532ebe30d2724c55b427c9d.zip |
staging: wlang-ng: avoid new typedef: hfa384x_usb_rridresp_t
This patch fixes the following checkpatch.pl warning in hfa384x.h:
WARNING: do not add new typedefs
It applies for typedef hfa384x_usb_rridresp_t
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wlan-ng/hfa384x.h | 6 | ||||
-rw-r--r-- | drivers/staging/wlan-ng/hfa384x_usb.c | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/drivers/staging/wlan-ng/hfa384x.h b/drivers/staging/wlan-ng/hfa384x.h index 18588d67c800..0ba5517b20f4 100644 --- a/drivers/staging/wlan-ng/hfa384x.h +++ b/drivers/staging/wlan-ng/hfa384x.h @@ -873,12 +873,12 @@ struct hfa384x_usb_statusresp { u16 resp2; } __packed; -typedef struct hfa384x_usb_rridresp { +struct hfa384x_usb_rridresp { u16 type; u16 frmlen; u16 rid; u8 data[HFA384x_RIDDATA_MAXLEN]; -} __packed hfa384x_usb_rridresp_t; +} __packed; typedef struct hfa384x_usb_statusresp hfa384x_usb_wmemresp_t; @@ -918,7 +918,7 @@ typedef union hfa384x_usbin { struct hfa384x_usb_infofrm infofrm; struct hfa384x_usb_statusresp cmdresp; struct hfa384x_usb_statusresp wridresp; - hfa384x_usb_rridresp_t rridresp; + struct hfa384x_usb_rridresp rridresp; hfa384x_usb_wmemresp_t wmemresp; hfa384x_usb_rmemresp_t rmemresp; hfa384x_usb_bufavail_t bufavail; diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c index 7d09f250c0be..c21c591973f6 100644 --- a/drivers/staging/wlan-ng/hfa384x_usb.c +++ b/drivers/staging/wlan-ng/hfa384x_usb.c @@ -216,7 +216,7 @@ usbctlx_get_status(const struct hfa384x_usb_statusresp *cmdresp, hfa384x_cmdresult_t *result); static void -usbctlx_get_rridresult(const hfa384x_usb_rridresp_t *rridresp, +usbctlx_get_rridresult(const struct hfa384x_usb_rridresp *rridresp, hfa384x_rridresult_t *result); /*---------------------------------------------------*/ @@ -636,7 +636,7 @@ usbctlx_get_status(const struct hfa384x_usb_statusresp *cmdresp, } static void -usbctlx_get_rridresult(const hfa384x_usb_rridresp_t *rridresp, +usbctlx_get_rridresult(const struct hfa384x_usb_rridresp *rridresp, hfa384x_rridresult_t *result) { result->rid = le16_to_cpu(rridresp->rid); @@ -685,7 +685,7 @@ static inline struct usbctlx_completor *init_cmd_completor( struct usbctlx_rrid_completor { struct usbctlx_completor head; - const hfa384x_usb_rridresp_t *rridresp; + const struct hfa384x_usb_rridresp *rridresp; void *riddata; unsigned int riddatalen; }; @@ -713,7 +713,7 @@ static int usbctlx_rrid_completor_fn(struct usbctlx_completor *head) static inline struct usbctlx_completor *init_rrid_completor( struct usbctlx_rrid_completor *completor, - const hfa384x_usb_rridresp_t + const struct hfa384x_usb_rridresp *rridresp, void *riddata, unsigned int riddatalen) |