staging: wlan-ng: renames ASL_currBSS to avoid camelcase
authorJuliana Rodrigues <juliana.orod@gmail.com>
Sat, 8 Oct 2016 09:49:32 +0000 (06:49 -0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Oct 2016 08:24:48 +0000 (10:24 +0200)
Renames the camelcased variable ASL_currBSS to asl_curr_bss in order
to fix a checkpatch warning.

Signed-off-by: Juliana Rodrigues <juliana.orod@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/hfa384x.h
drivers/staging/wlan-ng/prism2sta.c

index 6acdbce..e00ebf3 100644 (file)
@@ -456,7 +456,7 @@ struct hfa384x_downloadbuffer {
 /*-- Information Record: commsquality --*/
 struct hfa384x_commsquality {
        u16 cq_curr_bss;
-       u16 ASL_currBSS;
+       u16 asl_curr_bss;
        u16 ANL_currFC;
 } __packed;
 
index bcf2133..e20517d 100644 (file)
@@ -373,7 +373,8 @@ static int prism2sta_mlmerequest(struct wlandevice *wlandev,
                            P80211ENUM_msgitem_status_data_ok;
 
                        qualmsg->link.data = le16_to_cpu(hw->qual.cq_curr_bss);
-                       qualmsg->level.data = le16_to_cpu(hw->qual.ASL_currBSS);
+                       qualmsg->level.data =
+                               le16_to_cpu(hw->qual.asl_curr_bss);
                        qualmsg->noise.data = le16_to_cpu(hw->qual.ANL_currFC);
                        qualmsg->txrate.data = hw->txrate;
 
@@ -1948,7 +1949,7 @@ void prism2sta_commsqual_defer(struct work_struct *data)
 
                pr_debug("commsqual %d %d %d\n",
                         le16_to_cpu(hw->qual.cq_curr_bss),
-                        le16_to_cpu(hw->qual.ASL_currBSS),
+                        le16_to_cpu(hw->qual.asl_curr_bss),
                         le16_to_cpu(hw->qual.ANL_currFC));
        }