Commit 8f8149de authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

staging: wlan-ng: avoid CamelCase: hfa384x_HScanResultSub

Replace CamelCase struct name with underscores to comply
with the standard kernel coding style.
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c447358a
...@@ -694,7 +694,7 @@ struct hfa384x_ch_info_result { ...@@ -694,7 +694,7 @@ struct hfa384x_ch_info_result {
} __packed; } __packed;
/*-- Inquiry Frame, Diagnose: Host Scan Results & Subfields--*/ /*-- Inquiry Frame, Diagnose: Host Scan Results & Subfields--*/
struct hfa384x_HScanResultSub { struct hfa384x_hscan_result_sub {
u16 chid; u16 chid;
u16 anl; u16 anl;
u16 sl; u16 sl;
...@@ -710,7 +710,7 @@ struct hfa384x_HScanResultSub { ...@@ -710,7 +710,7 @@ struct hfa384x_HScanResultSub {
struct hfa384x_HScanResult { struct hfa384x_HScanResult {
u16 nresult; u16 nresult;
u16 rsvd; u16 rsvd;
struct hfa384x_HScanResultSub result[HFA384x_HSCANRESULT_MAX]; struct hfa384x_hscan_result_sub result[HFA384x_HSCANRESULT_MAX];
} __packed; } __packed;
/*-- Unsolicited Frame, MAC Mgmt: LinkStatus --*/ /*-- Unsolicited Frame, MAC Mgmt: LinkStatus --*/
......
...@@ -373,7 +373,7 @@ int prism2mgmt_scan_results(struct wlandevice *wlandev, void *msgp) ...@@ -373,7 +373,7 @@ int prism2mgmt_scan_results(struct wlandevice *wlandev, void *msgp)
int result = 0; int result = 0;
struct p80211msg_dot11req_scan_results *req; struct p80211msg_dot11req_scan_results *req;
struct hfa384x *hw = wlandev->priv; struct hfa384x *hw = wlandev->priv;
struct hfa384x_HScanResultSub *item = NULL; struct hfa384x_hscan_result_sub *item = NULL;
int count; int count;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment