qcacld-3.0: Rename HDD identifier inactivityTime

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

Change-Id: I22e52f1e916e201efb84a1fa9afffde165c1912a
CRs-Fixed: 2414990
This commit is contained in:
Jeff Johnson
2019-03-09 15:14:30 -08:00
committato da nshrivas
parent 15bf1b125f
commit 0a12bbc538

Vedi File

@@ -377,7 +377,7 @@ static void hdd_wmm_inactivity_timer_cb(void *user_data)
* function to enable the traffic inactivity timer for the given AC * function to enable the traffic inactivity timer for the given AC
* *
* @qos_context: [in] pointer to qos_context * @qos_context: [in] pointer to qos_context
* @inactivityTime: [in] value of the inactivity interval in millisecs * @inactivity_time: [in] value of the inactivity interval in millisecs
* *
* When a QoS-Tspec is successfully setup, if the inactivity interval * When a QoS-Tspec is successfully setup, if the inactivity interval
* time specified in the AddTS parameters is non-zero, this function * time specified in the AddTS parameters is non-zero, this function
@@ -387,7 +387,7 @@ static void hdd_wmm_inactivity_timer_cb(void *user_data)
*/ */
static QDF_STATUS static QDF_STATUS
hdd_wmm_enable_inactivity_timer(struct hdd_wmm_qos_context *qos_context, hdd_wmm_enable_inactivity_timer(struct hdd_wmm_qos_context *qos_context,
uint32_t inactivityTime) uint32_t inactivity_time)
{ {
QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE; QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE;
struct hdd_adapter *adapter = qos_context->adapter; struct hdd_adapter *adapter = qos_context->adapter;
@@ -408,7 +408,7 @@ hdd_wmm_enable_inactivity_timer(struct hdd_wmm_qos_context *qos_context,
} }
/* Start the inactivity timer */ /* Start the inactivity timer */
qdf_status = qdf_mc_timer_start(&ac->inactivity_timer, qdf_status = qdf_mc_timer_start(&ac->inactivity_timer,
inactivityTime); inactivity_time);
if (!QDF_IS_STATUS_SUCCESS(qdf_status)) { if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
hdd_err("Starting inactivity timer failed on AC %d", hdd_err("Starting inactivity timer failed on AC %d",
ac_type); ac_type);
@@ -418,7 +418,7 @@ hdd_wmm_enable_inactivity_timer(struct hdd_wmm_qos_context *qos_context,
return qdf_status; return qdf_status;
} }
ac->inactivity_time = inactivityTime; ac->inactivity_time = inactivity_time;
/* Initialize the current tx traffic count on this AC */ /* Initialize the current tx traffic count on this AC */
ac->last_traffic_count = ac->last_traffic_count =
adapter->hdd_stats.tx_rx_stats.tx_classified_ac[qos_context-> adapter->hdd_stats.tx_rx_stats.tx_classified_ac[qos_context->