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

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

staging: wlang-ng: avoid new typedef: hfa384x_HScanResultSub_t



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

It applies for typedef hfa384x_HScanResultSub_t

Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0fddae8e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -694,7 +694,7 @@ struct hfa384x_ChInfoResult {
} __packed;

/*--  Inquiry Frame, Diagnose: Host Scan Results & Subfields--*/
typedef struct hfa384x_HScanResultSub {
struct hfa384x_HScanResultSub {
	u16 chid;
	u16 anl;
	u16 sl;
@@ -705,12 +705,12 @@ typedef struct hfa384x_HScanResultSub {
	u8 supprates[10];	/* 802.11 info element */
	u16 proberesp_rate;
	u16 atim;
} __packed hfa384x_HScanResultSub_t;
} __packed;

typedef struct hfa384x_HScanResult {
	u16 nresult;
	u16 rsvd;
	hfa384x_HScanResultSub_t result[HFA384x_HSCANRESULT_MAX];
	struct hfa384x_HScanResultSub result[HFA384x_HSCANRESULT_MAX];
} __packed hfa384x_HScanResult_t;

/*--  Unsolicited Frame, MAC Mgmt: LinkStatus --*/
+1 −1
Original line number Diff line number Diff line
@@ -371,7 +371,7 @@ int prism2mgmt_scan_results(struct wlandevice *wlandev, void *msgp)
	int result = 0;
	struct p80211msg_dot11req_scan_results *req;
	hfa384x_t *hw = wlandev->priv;
	hfa384x_HScanResultSub_t *item = NULL;
	struct hfa384x_HScanResultSub *item = NULL;

	int count;