From 1b48ccbb172899e9d686e43aee4fe804e03cb967 Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Sat, 9 Mar 2019 14:15:57 -0800 Subject: [PATCH] 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 --- core/hdd/inc/wlan_hdd_wmm.h | 4 ++-- core/hdd/src/wlan_hdd_wmm.c | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/core/hdd/inc/wlan_hdd_wmm.h b/core/hdd/inc/wlan_hdd_wmm.h index aeaf8034e3..72724f738d 100644 --- a/core/hdd/inc/wlan_hdd_wmm.h +++ b/core/hdd/inc/wlan_hdd_wmm.h @@ -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; diff --git a/core/hdd/src/wlan_hdd_wmm.c b/core/hdd/src/wlan_hdd_wmm.c index d9af128d33..124d94177a 100644 --- a/core/hdd/src/wlan_hdd_wmm.c +++ b/core/hdd/src/wlan_hdd_wmm.c @@ -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 */