]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wlan-ng: avoid CamelCase: hfa384x_HScanResultSub
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Wed, 19 Oct 2016 15:59:18 +0000 (17:59 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 25 Oct 2016 08:44:22 +0000 (10:44 +0200)
Replace CamelCase struct name with underscores to comply
with the standard kernel coding style.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/hfa384x.h
drivers/staging/wlan-ng/prism2mgmt.c

index c5b52088338aa0c90d4be6bfd9ad41cf03bca085..46855feeb5481395085a9ec1c1a897339d499a63 100644 (file)
@@ -694,7 +694,7 @@ struct hfa384x_ch_info_result {
 } __packed;
 
 /*--  Inquiry Frame, Diagnose: Host Scan Results & Subfields--*/
-struct hfa384x_HScanResultSub {
+struct hfa384x_hscan_result_sub {
        u16 chid;
        u16 anl;
        u16 sl;
@@ -710,7 +710,7 @@ struct hfa384x_HScanResultSub {
 struct hfa384x_HScanResult {
        u16 nresult;
        u16 rsvd;
-       struct hfa384x_HScanResultSub result[HFA384x_HSCANRESULT_MAX];
+       struct hfa384x_hscan_result_sub result[HFA384x_HSCANRESULT_MAX];
 } __packed;
 
 /*--  Unsolicited Frame, MAC Mgmt: LinkStatus --*/
index 3a56308332cc3cd030803cbe522709821c572aae..f63704a54073a92d66966c3d011d9f754f18ea97 100644 (file)
@@ -373,7 +373,7 @@ int prism2mgmt_scan_results(struct wlandevice *wlandev, void *msgp)
        int result = 0;
        struct p80211msg_dot11req_scan_results *req;
        struct hfa384x *hw = wlandev->priv;
-       struct hfa384x_HScanResultSub *item = NULL;
+       struct hfa384x_hscan_result_sub *item = NULL;
 
        int count;