aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/wlan-ng
diff options
context:
space:
mode:
authorSergio Paracuellos <sergio.paracuellos@gmail.com>2016-09-28 20:19:31 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-10-02 17:03:52 +0200
commit2c8079dedc1cefc7098f5071f7e4b96a2bddac80 (patch)
treeb2a96ed670abd173663dcdcf1754fc74cbd6d6db /drivers/staging/wlan-ng
parentstaging: wlang-ng: avoid new typedef: hfa384x_usb_cmdresp_t (diff)
downloadlinux-dev-2c8079dedc1cefc7098f5071f7e4b96a2bddac80.tar.xz
linux-dev-2c8079dedc1cefc7098f5071f7e4b96a2bddac80.zip
staging: wlang-ng: avoid new typedef: hfa384x_usb_wridresp_t
This patch fixes the following checkpatch.pl warning in hfa384x.h: WARNING: do not add new typedefs It applies for typedef hfa384x_usb_wridresp_t Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wlan-ng')
-rw-r--r--drivers/staging/wlan-ng/hfa384x.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/wlan-ng/hfa384x.h b/drivers/staging/wlan-ng/hfa384x.h
index 24e8ac41de46..18588d67c800 100644
--- a/drivers/staging/wlan-ng/hfa384x.h
+++ b/drivers/staging/wlan-ng/hfa384x.h
@@ -873,8 +873,6 @@ struct hfa384x_usb_statusresp {
u16 resp2;
} __packed;
-typedef struct hfa384x_usb_statusresp hfa384x_usb_wridresp_t;
-
typedef struct hfa384x_usb_rridresp {
u16 type;
u16 frmlen;
@@ -919,7 +917,7 @@ typedef union hfa384x_usbin {
struct hfa384x_usb_txfrm txfrm;
struct hfa384x_usb_infofrm infofrm;
struct hfa384x_usb_statusresp cmdresp;
- hfa384x_usb_wridresp_t wridresp;
+ struct hfa384x_usb_statusresp wridresp;
hfa384x_usb_rridresp_t rridresp;
hfa384x_usb_wmemresp_t wmemresp;
hfa384x_usb_rmemresp_t rmemresp;