ソースを参照

qcacld-3.0: Remove pVContext from struct _cds_sched_context

The pVContext field of struct _cds_sched_context is written but never
read, hence it is unused, so remove it.

Change-Id: I38a6491fb8581df00af59f7f2bc3f5f88c65b7e5
CRs-Fixed: 2250668
Jeff Johnson 6 年 前
コミット
7d63adb741
2 ファイル変更0 行追加3 行削除
  1. 0 2
      core/cds/inc/cds_sched.h
  2. 0 1
      core/cds/src/cds_sched.c

+ 0 - 2
core/cds/inc/cds_sched.h

@@ -94,8 +94,6 @@ struct cds_ol_rx_pkt {
 **
 */
 typedef struct _cds_sched_context {
-	/* Place holder to the CDS Context */
-	void *pVContext;
 #ifdef QCA_CONFIG_SMP
 	spinlock_t ol_rx_thread_lock;
 

+ 0 - 1
core/cds/src/cds_sched.c

@@ -444,7 +444,6 @@ QDF_STATUS cds_sched_open(void *p_cds_context,
 		return QDF_STATUS_E_INVAL;
 	}
 	qdf_mem_zero(pSchedContext, sizeof(cds_sched_context));
-	pSchedContext->pVContext = p_cds_context;
 #ifdef QCA_CONFIG_SMP
 	spin_lock_init(&pSchedContext->ol_rx_thread_lock);
 	init_waitqueue_head(&pSchedContext->ol_rx_wait_queue);