mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 01:36:52 +09:00
staging: wlang-ng: avoid new typedef: hfa384x_HostScanRequest_data_t
This patch fixes the following checkpatch.pl warning in hfa384x.h: WARNING: do not add new typedefs It applies for typedef hfa384x_HostScanRequest_data_t Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
65f170c661
commit
935cbfb2bd
@@ -408,11 +408,11 @@ struct hfa384x_caplevel {
|
||||
#define HFA384x_CREATEIBSS_JOINCREATEIBSS 0
|
||||
|
||||
/*-- Configuration Record: HostScanRequest (data portion only) --*/
|
||||
typedef struct hfa384x_HostScanRequest_data {
|
||||
struct hfa384x_HostScanRequest_data {
|
||||
u16 channelList;
|
||||
u16 txRate;
|
||||
struct hfa384x_bytestr32 ssid;
|
||||
} __packed hfa384x_HostScanRequest_data_t;
|
||||
} __packed;
|
||||
|
||||
/*-- Configuration Record: JoinRequest (data portion only) --*/
|
||||
typedef struct hfa384x_JoinRequest_data {
|
||||
|
||||
@@ -122,7 +122,7 @@ int prism2mgmt_scan(struct wlandevice *wlandev, void *msgp)
|
||||
int i, timeout;
|
||||
int istmpenable = 0;
|
||||
|
||||
hfa384x_HostScanRequest_data_t scanreq;
|
||||
struct hfa384x_HostScanRequest_data scanreq;
|
||||
|
||||
/* gatekeeper check */
|
||||
if (HFA384x_FIRMWARE_VERSION(hw->ident_sta_fw.major,
|
||||
@@ -292,7 +292,7 @@ int prism2mgmt_scan(struct wlandevice *wlandev, void *msgp)
|
||||
|
||||
result = hfa384x_drvr_setconfig(hw,
|
||||
HFA384x_RID_HOSTSCAN, &scanreq,
|
||||
sizeof(hfa384x_HostScanRequest_data_t));
|
||||
sizeof(struct hfa384x_HostScanRequest_data));
|
||||
if (result) {
|
||||
netdev_err(wlandev->netdev,
|
||||
"setconfig(SCANREQUEST) failed. result=%d\n",
|
||||
|
||||
Reference in New Issue
Block a user