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
@@ -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;
@@ -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;
spin_lock_init(&pSchedContext->ol_rx_thread_lock);
init_waitqueue_head(&pSchedContext->ol_rx_wait_queue);