Browse Source

qcacld-3.0: Rename HDD identifier wmmQosConnection

The Linux Coding Style frowns upon mixed-case names so rename HDD
identifier wmmQosConnection to be compliant.

Change-Id: Ib23c8cca8d1adbb2fcc86686477aa5470e1b761e
CRs-Fixed: 2412981
Jeff Johnson 6 years ago
parent
commit
7f63ac9d1b
2 changed files with 4 additions and 4 deletions
  1. 2 2
      core/hdd/inc/wlan_hdd_wmm.h
  2. 2 2
      core/hdd/src/wlan_hdd_wmm.c

+ 2 - 2
core/hdd/inc/wlan_hdd_wmm.h

@@ -180,14 +180,14 @@ struct hdd_wmm_ac_status {
  * @wmmLock - mutex used for exclusive access to this adapter's WMM status
  * @wmmACStatus - per-AC WMM status
  * @qap - is this connected to a QoS-enabled AP?
- * @wmmQosConnection - is this a QoS connection?
+ * @qos_connection - is this a QoS connection?
  */
 struct hdd_wmm_status {
 	struct list_head wmmContextList;
 	struct mutex wmmLock;
 	struct hdd_wmm_ac_status wmmAcStatus[WLAN_MAX_AC];
 	bool qap;
-	bool wmmQosConnection;
+	bool qos_connection;
 };
 
 extern const uint8_t hdd_qdisc_ac_to_tl_ac[];

+ 2 - 2
core/hdd/src/wlan_hdd_wmm.c

@@ -2202,7 +2202,7 @@ QDF_STATUS hdd_wmm_connect(struct hdd_adapter *adapter,
 		 qap, qos_connection, acm_mask);
 
 	adapter->hdd_wmm_status.qap = qap;
-	adapter->hdd_wmm_status.wmmQosConnection = qos_connection;
+	adapter->hdd_wmm_status.qos_connection = qos_connection;
 	mac_handle = hdd_adapter_get_mac_handle(adapter);
 
 	for (ac = 0; ac < WLAN_MAX_AC; ac++) {
@@ -2261,7 +2261,7 @@ QDF_STATUS hdd_wmm_connect(struct hdd_adapter *adapter,
  */
 bool hdd_wmm_is_active(struct hdd_adapter *adapter)
 {
-	if ((!adapter->hdd_wmm_status.wmmQosConnection) ||
+	if ((!adapter->hdd_wmm_status.qos_connection) ||
 	    (!adapter->hdd_wmm_status.qap)) {
 		return false;
 	} else {