Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 173bf7e3 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman
Browse files

staging: wlan-ng: avoid new typedef CTLX_STATE



This patch fixes the following checkpatch.pl warning in hfa384x.h:
WARNING: do not add new typedefs

It applies for typedef CTLX_STATE

Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 33630b00
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1169,7 +1169,6 @@ enum ctlx_state {
	CTLX_REQ_COMPLETE,	/* OUT URB complete */
	CTLX_RESP_COMPLETE	/* IN URB received */
};
typedef enum ctlx_state CTLX_STATE;

struct hfa384x_usbctlx;
struct hfa384x;
@@ -1186,7 +1185,7 @@ struct hfa384x_usbctlx {
	union hfa384x_usbout outbuf;	/* pkt buf for OUT */
	union hfa384x_usbin inbuf;	/* pkt buf for IN(a copy) */

	CTLX_STATE state;	/* Tracks running state */
	enum ctlx_state state;	/* Tracks running state */

	struct completion done;
	volatile int reapable;	/* Food for the reaper task */
+1 −1
Original line number Diff line number Diff line
@@ -267,7 +267,7 @@ hfa384x_dowmem(struct hfa384x *hw,

static int hfa384x_isgood_pdrcode(u16 pdrcode);

static inline const char *ctlxstr(CTLX_STATE s)
static inline const char *ctlxstr(enum ctlx_state s)
{
	static const char * const ctlx_str[] = {
		"Initial state",