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
This commit is contained in:
Jeff Johnson
2019-03-09 14:18:34 -08:00
committed by nshrivas
parent 1b48ccbb17
commit c77123d656
2 changed files with 11 additions and 11 deletions

View File

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

View File

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