Procházet zdrojové kódy

qcacld-3.0: Rename HDD identifier wmmAcAccessGranted

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

Change-Id: I23521ad0a8184e25b4e5ed88899b11bb2e56318c
CRs-Fixed: 2414514
Jeff Johnson před 6 roky
rodič
revize
c77123d656
2 změnil soubory, kde provedl 11 přidání a 11 odebrání
  1. 2 2
      core/hdd/inc/wlan_hdd_wmm.h
  2. 9 9
      core/hdd/src/wlan_hdd_wmm.c

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

@@ -137,7 +137,7 @@ struct hdd_wmm_qos_context {
  *	this AC?
  * @is_access_pending - is implicit QoS negotiation currently taking place?
  * @has_access_failed - has implicit QoS negotiation already failed?
- * @wmmAcAccessGranted - has implicit QoS negotiation already succeeded?
+ * @was_access_granted - has implicit QoS negotiation already succeeded?
  * @wmmAcAccessAllowed - is access to this AC allowed, either because we
  *	are not doing WMM, we are not doing implicit QoS, implict QoS has
  *	completed, or explicit QoS has completed?
@@ -157,7 +157,7 @@ struct hdd_wmm_ac_status {
 	bool is_access_needed;
 	bool is_access_pending;
 	bool has_access_failed;
-	bool wmmAcAccessGranted;
+	bool was_access_granted;
 	bool wmmAcAccessAllowed;
 	bool wmmAcTspecValid;
 	bool wmmAcUapsdInfoValid;

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

@@ -529,7 +529,7 @@ static QDF_STATUS hdd_wmm_sme_callback(mac_handle_t mac_handle,
 			       tspec_info, sizeof(ac->wmmAcTspecInfo));
 		}
 		ac->wmmAcAccessAllowed = true;
-		ac->wmmAcAccessGranted = true;
+		ac->was_access_granted = true;
 		ac->is_access_pending = false;
 		ac->has_access_failed = false;
 
@@ -563,7 +563,7 @@ static QDF_STATUS hdd_wmm_sme_callback(mac_handle_t mac_handle,
 		hdd_debug("Setup is complete (U-APSD set previously)");
 
 		ac->wmmAcAccessAllowed = true;
-		ac->wmmAcAccessGranted = true;
+		ac->was_access_granted = true;
 		ac->is_access_pending = false;
 
 		if (HDD_WMM_HANDLE_IMPLICIT != qos_context->handle) {
@@ -681,7 +681,7 @@ static QDF_STATUS hdd_wmm_sme_callback(mac_handle_t mac_handle,
 			 * know packets are pending
 			 */
 			ac->is_access_pending = false;
-			ac->wmmAcAccessGranted = true;
+			ac->was_access_granted = true;
 			ac->wmmAcAccessAllowed = true;
 
 		} else {
@@ -709,7 +709,7 @@ static QDF_STATUS hdd_wmm_sme_callback(mac_handle_t mac_handle,
 			 * failure.  the packets will flow.  Note that
 			 * the MAC will "do the right thing"
 			 */
-			ac->wmmAcAccessGranted = true;
+			ac->was_access_granted = true;
 			ac->wmmAcAccessAllowed = true;
 			ac->has_access_failed = false;
 			ac->is_access_pending = false;
@@ -804,7 +804,7 @@ static QDF_STATUS hdd_wmm_sme_callback(mac_handle_t mac_handle,
 
 		if (HDD_WMM_HANDLE_IMPLICIT == qos_context->handle) {
 			/* we no longer have implicit access granted */
-			ac->wmmAcAccessGranted = false;
+			ac->was_access_granted = false;
 			ac->has_access_failed = false;
 		} else {
 			hdd_debug("Explicit Qos, notifying user space");
@@ -1424,7 +1424,7 @@ static void __hdd_wmm_do_implicit_qos(struct hdd_wmm_qos_context *qos_context)
 		hdd_debug("Setup is complete, notify TL");
 
 		ac->wmmAcAccessAllowed = true;
-		ac->wmmAcAccessGranted = true;
+		ac->was_access_granted = true;
 		ac->is_access_pending = false;
 
 		break;
@@ -1519,7 +1519,7 @@ QDF_STATUS hdd_wmm_adapter_init(struct hdd_adapter *adapter)
 		ac_status->is_access_needed = false;
 		ac_status->is_access_pending = false;
 		ac_status->has_access_failed = false;
-		ac_status->wmmAcAccessGranted = false;
+		ac_status->was_access_granted = false;
 		ac_status->wmmAcAccessAllowed = false;
 		ac_status->wmmAcTspecValid = false;
 		ac_status->wmmAcUapsdInfoValid = false;
@@ -1552,7 +1552,7 @@ QDF_STATUS hdd_wmm_adapter_clear(struct hdd_adapter *adapter)
 		ac_status->is_access_needed = false;
 		ac_status->is_access_pending = false;
 		ac_status->has_access_failed = false;
-		ac_status->wmmAcAccessGranted = false;
+		ac_status->was_access_granted = false;
 		ac_status->wmmAcAccessAllowed = false;
 		ac_status->wmmAcTspecValid = false;
 		ac_status->wmmAcUapsdInfoValid = false;
@@ -2215,7 +2215,7 @@ QDF_STATUS hdd_wmm_connect(struct hdd_adapter *adapter,
 			adapter->hdd_wmm_status.ac_status[ac].
 			wmmAcAccessAllowed = false;
 			adapter->hdd_wmm_status.ac_status[ac].
-			wmmAcAccessGranted = false;
+			was_access_granted = false;
 			/* after reassoc if we have valid tspec, allow access */
 			if (adapter->hdd_wmm_status.ac_status[ac].
 			    wmmAcTspecValid