summaryrefslogtreecommitdiff
path: root/drivers/staging/wlan-ng/hfa384x.h
diff options
context:
space:
mode:
authorSergio Paracuellos <sergio.paracuellos@gmail.com>2016-09-28 21:20:16 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-10-02 18:03:56 +0300
commita10d36b08355d44acd9f0c391f0f01bd631d2d9d (patch)
treeda9af114435f3e994412329a6bf6f95daced1471 /drivers/staging/wlan-ng/hfa384x.h
parentb3fd890e1b4fc2fb0ff72c3663ccff18ba47046b (diff)
downloadlinux-a10d36b08355d44acd9f0c391f0f01bd631d2d9d.tar.xz
staging: wlang-ng: avoid new typedef: hfa384x_usbctlx_t
This patch fixes the following checkpatch.pl warning in hfa384x.h: WARNING: do not add new typedefs It applies for typedef hfa384x_usbctlx_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/hfa384x.h')
-rw-r--r--drivers/staging/wlan-ng/hfa384x.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wlan-ng/hfa384x.h b/drivers/staging/wlan-ng/hfa384x.h
index 9390fdde491c..f38b1958aa84 100644
--- a/drivers/staging/wlan-ng/hfa384x.h
+++ b/drivers/staging/wlan-ng/hfa384x.h
@@ -1179,7 +1179,7 @@ typedef void (*ctlx_cmdcb_t) (struct hfa384x *, const struct hfa384x_usbctlx *);
typedef void (*ctlx_usercb_t) (struct hfa384x *hw,
void *ctlxresult, void *usercb_data);
-typedef struct hfa384x_usbctlx {
+struct hfa384x_usbctlx {
struct list_head list;
size_t outbufsize;
@@ -1196,7 +1196,7 @@ typedef struct hfa384x_usbctlx {
void *usercb_data; /* at CTLX completion */
int variant; /* Identifies cmd variant */
-} hfa384x_usbctlx_t;
+};
typedef struct hfa384x_usbctlxq {
spinlock_t lock;