Parcourir la source

qcacld-3.0: Rename HDD identifier wmmAcSetupImplicitQos

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

Change-Id: I9da004d4652e1b827f99368ac0ffa4cce33d2fda
CRs-Fixed: 2412976
Jeff Johnson il y a 6 ans
Parent
commit
7d4a0b5f60
2 fichiers modifiés avec 6 ajouts et 6 suppressions
  1. 2 2
      core/hdd/inc/wlan_hdd_wmm.h
  2. 4 4
      core/hdd/src/wlan_hdd_wmm.c

+ 2 - 2
core/hdd/inc/wlan_hdd_wmm.h

@@ -113,7 +113,7 @@ enum hdd_wmm_linuxac {
  * @adapter: adapter upon which this flow was configured
  * @ac_type: access category for this flow
  * @status: the status of the last operation performed on this flow by SME
- * @wmmAcSetupImplicitQos: work structure used for deferring implicit QoS work
+ * @implicit_qos_work: work structure used for deferring implicit QoS work
  *	from softirq context to thread context
  * @magic: magic number used to verify that this is a valid context when
  *	referenced anonymously
@@ -125,7 +125,7 @@ struct hdd_wmm_qos_context {
 	struct hdd_adapter *adapter;
 	sme_ac_enum_type ac_type;
 	hdd_wlan_wmm_status_e status;
-	struct work_struct wmmAcSetupImplicitQos;
+	struct work_struct implicit_qos_work;
 	uint32_t magic;
 	bool is_inactivity_timer_running;
 };

+ 4 - 4
core/hdd/src/wlan_hdd_wmm.c

@@ -1447,7 +1447,7 @@ static void hdd_wmm_do_implicit_qos(struct work_struct *work)
 {
 	struct hdd_wmm_qos_context *qos_ctx =
 		container_of(work, struct hdd_wmm_qos_context,
-			     wmmAcSetupImplicitQos);
+			     implicit_qos_work);
 	struct osif_vdev_sync *vdev_sync;
 
 	if (qos_ctx->magic != HDD_WMM_CTX_MAGIC) {
@@ -1585,7 +1585,7 @@ QDF_STATUS hdd_wmm_adapter_close(struct hdd_adapter *adapter)
 
 		if (qos_context->handle == HDD_WMM_HANDLE_IMPLICIT
 			&& qos_context->magic == HDD_WMM_CTX_MAGIC)
-			cds_flush_work(&qos_context->wmmAcSetupImplicitQos);
+			cds_flush_work(&qos_context->implicit_qos_work);
 
 		hdd_wmm_free_context(qos_context);
 	}
@@ -1981,13 +1981,13 @@ QDF_STATUS hdd_wmm_acquire_access(struct hdd_adapter *adapter,
 	qos_context->magic = HDD_WMM_CTX_MAGIC;
 	qos_context->is_inactivity_timer_running = false;
 
-	INIT_WORK(&qos_context->wmmAcSetupImplicitQos, hdd_wmm_do_implicit_qos);
+	INIT_WORK(&qos_context->implicit_qos_work, hdd_wmm_do_implicit_qos);
 
 	QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_DEBUG,
 		  "%s: Scheduling work for AC %d, context %pK",
 		  __func__, ac_type, qos_context);
 
-	schedule_work(&qos_context->wmmAcSetupImplicitQos);
+	schedule_work(&qos_context->implicit_qos_work);
 
 	/* caller will need to wait until the work takes place and
 	 * TSPEC negotiation completes