qcacld-3.0: Rename HDD identifier wmmAcAccessFailed

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

Change-Id: I149b1d76a799b87e8fbf6814280c760b0a9e0d26
CRs-Fixed: 2414513
This commit is contained in:
Jeff Johnson
2019-03-09 14:15:57 -08:00
committed by nshrivas
parent e5b75be368
commit 1b48ccbb17
2 changed files with 10 additions and 10 deletions

View File

@@ -136,7 +136,7 @@ struct hdd_wmm_qos_context {
* @is_access_needed - does the worker thread need to acquire access to
* this AC?
* @is_access_pending - is implicit QoS negotiation currently taking place?
* @wmmAcAccessFailed - has implicit QoS negotiation already failed?
* @has_access_failed - has implicit QoS negotiation already failed?
* @wmmAcAccessGranted - 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
@@ -156,7 +156,7 @@ struct hdd_wmm_ac_status {
bool is_access_required;
bool is_access_needed;
bool is_access_pending;
bool wmmAcAccessFailed;
bool has_access_failed;
bool wmmAcAccessGranted;
bool wmmAcAccessAllowed;
bool wmmAcTspecValid;

View File

@@ -531,7 +531,7 @@ static QDF_STATUS hdd_wmm_sme_callback(mac_handle_t mac_handle,
ac->wmmAcAccessAllowed = true;
ac->wmmAcAccessGranted = true;
ac->is_access_pending = false;
ac->wmmAcAccessFailed = false;
ac->has_access_failed = false;
if (HDD_WMM_HANDLE_IMPLICIT != qos_context->handle) {
@@ -583,7 +583,7 @@ static QDF_STATUS hdd_wmm_sme_callback(mac_handle_t mac_handle,
/* QoS setup failed */
ac->is_access_pending = false;
ac->wmmAcAccessFailed = true;
ac->has_access_failed = true;
ac->wmmAcAccessAllowed = false;
if (HDD_WMM_HANDLE_IMPLICIT != qos_context->handle) {
@@ -623,7 +623,7 @@ static QDF_STATUS hdd_wmm_sme_callback(mac_handle_t mac_handle,
* thing"
*/
ac->is_access_pending = false;
ac->wmmAcAccessFailed = true;
ac->has_access_failed = true;
ac->wmmAcAccessAllowed = true;
} else {
@@ -711,7 +711,7 @@ static QDF_STATUS hdd_wmm_sme_callback(mac_handle_t mac_handle,
*/
ac->wmmAcAccessGranted = true;
ac->wmmAcAccessAllowed = true;
ac->wmmAcAccessFailed = false;
ac->has_access_failed = false;
ac->is_access_pending = false;
} else {
@@ -805,7 +805,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->wmmAcAccessFailed = false;
ac->has_access_failed = false;
} else {
hdd_debug("Explicit Qos, notifying user space");
@@ -1518,7 +1518,7 @@ QDF_STATUS hdd_wmm_adapter_init(struct hdd_adapter *adapter)
ac_status->is_access_required = false;
ac_status->is_access_needed = false;
ac_status->is_access_pending = false;
ac_status->wmmAcAccessFailed = false;
ac_status->has_access_failed = false;
ac_status->wmmAcAccessGranted = false;
ac_status->wmmAcAccessAllowed = false;
ac_status->wmmAcTspecValid = false;
@@ -1551,7 +1551,7 @@ QDF_STATUS hdd_wmm_adapter_clear(struct hdd_adapter *adapter)
ac_status->is_access_required = false;
ac_status->is_access_needed = false;
ac_status->is_access_pending = false;
ac_status->wmmAcAccessFailed = false;
ac_status->has_access_failed = false;
ac_status->wmmAcAccessGranted = false;
ac_status->wmmAcAccessAllowed = false;
ac_status->wmmAcTspecValid = false;
@@ -1933,7 +1933,7 @@ QDF_STATUS hdd_wmm_acquire_access(struct hdd_adapter *adapter,
* (if so, access should have been granted when the failure
* was handled)
*/
if (adapter->hdd_wmm_status.ac_status[ac_type].wmmAcAccessFailed) {
if (adapter->hdd_wmm_status.ac_status[ac_type].has_access_failed) {
/* request previously failed
* allow access, but we'll be downgraded
*/