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:
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user