qcacld-3.0: Rename HDD identifier currentTrafficCnt
The Linux Coding Style frowns upon mixed-case names so rename HDD identifier currentTrafficCnt to be compliant. Change-Id: Ic330104dc1cc74ed3f4e07534911ee5c1992f262 CRs-Fixed: 2414989
This commit is contained in:
@@ -323,7 +323,7 @@ static void hdd_wmm_inactivity_timer_cb(void *user_data)
|
|||||||
struct hdd_wmm_ac_status *ac;
|
struct hdd_wmm_ac_status *ac;
|
||||||
hdd_wlan_wmm_status_e status;
|
hdd_wlan_wmm_status_e status;
|
||||||
QDF_STATUS qdf_status;
|
QDF_STATUS qdf_status;
|
||||||
uint32_t currentTrafficCnt = 0;
|
uint32_t traffic_count = 0;
|
||||||
sme_ac_enum_type ac_type;
|
sme_ac_enum_type ac_type;
|
||||||
|
|
||||||
if (!qos_context) {
|
if (!qos_context) {
|
||||||
@@ -342,19 +342,19 @@ static void hdd_wmm_inactivity_timer_cb(void *user_data)
|
|||||||
ac = &adapter->hdd_wmm_status.ac_status[ac_type];
|
ac = &adapter->hdd_wmm_status.ac_status[ac_type];
|
||||||
|
|
||||||
/* Get the Tx stats for this AC. */
|
/* Get the Tx stats for this AC. */
|
||||||
currentTrafficCnt =
|
traffic_count =
|
||||||
adapter->hdd_stats.tx_rx_stats.tx_classified_ac[qos_context->
|
adapter->hdd_stats.tx_rx_stats.tx_classified_ac[qos_context->
|
||||||
ac_type];
|
ac_type];
|
||||||
|
|
||||||
hdd_warn("WMM inactivity check for AC=%d, count=%u, last=%u",
|
hdd_warn("WMM inactivity check for AC=%d, count=%u, last=%u",
|
||||||
ac_type, currentTrafficCnt, ac->last_traffic_count);
|
ac_type, traffic_count, ac->last_traffic_count);
|
||||||
if (ac->last_traffic_count == currentTrafficCnt) {
|
if (ac->last_traffic_count == traffic_count) {
|
||||||
/* there is no traffic activity, delete the TSPEC for this AC */
|
/* there is no traffic activity, delete the TSPEC for this AC */
|
||||||
status = hdd_wmm_delts(adapter, qos_context->handle);
|
status = hdd_wmm_delts(adapter, qos_context->handle);
|
||||||
hdd_warn("Deleted TS on AC %d, due to inactivity with status = %d!!!",
|
hdd_warn("Deleted TS on AC %d, due to inactivity with status = %d!!!",
|
||||||
ac_type, status);
|
ac_type, status);
|
||||||
} else {
|
} else {
|
||||||
ac->last_traffic_count = currentTrafficCnt;
|
ac->last_traffic_count = traffic_count;
|
||||||
if (ac->inactivity_timer.state == QDF_TIMER_STATE_STOPPED) {
|
if (ac->inactivity_timer.state == QDF_TIMER_STATE_STOPPED) {
|
||||||
/* Restart the timer */
|
/* Restart the timer */
|
||||||
qdf_status =
|
qdf_status =
|
||||||
|
Reference in New Issue
Block a user