qcacmn: Add code to remove void pointer usage

Add code to use cdp_vdev instead of void pointer for
API dp_tx_send_exception and dp_tx_send_mesh

Change-Id: I63ca5a62c2a8cd6feb906181702888814650dfce
CRs-Fixed: 2480836
This commit is contained in:
Akshay Kosigi
2019-06-10 12:25:10 +05:30
committed by nshrivas
parent 5a8bbbe05d
commit c74162c269
6 changed files with 21 additions and 14 deletions

View File

@@ -1318,4 +1318,9 @@ QDF_STATUS dp_tx_add_to_comp_queue(struct dp_soc *soc,
}
#endif
static inline
struct cdp_vdev *dp_vdev_to_cdp_vdev(struct dp_vdev *vdev)
{
return (struct cdp_vdev *)vdev;
}
#endif /* #ifndef _DP_INTERNAL_H_ */