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
This commit is contained in:
Jeff Johnson
2018-05-29 15:05:21 -07:00
committed by nshrivas
parent 2b6982c4a5
commit 7d63adb741
2 changed files with 0 additions and 3 deletions

View File

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

View File

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