qcacmn: Change to remove void pointer usage for HAL SRNG

Add code to remove void pointer usage for hal_srng
and use opaque pointer dp_hal_ring_t instead.

Change-Id: I6907f7376d7fe3c9180b8795bd96f49fead2ec64
CRs-Fixed: 2484404
このコミットが含まれているのは:
Akshay Kosigi
2019-06-27 15:26:13 +05:30
committed by nshrivas
コミット 0bca9fb200
20個のファイルの変更283行の追加205行の削除

ファイルの表示

@@ -2741,9 +2741,9 @@ static inline void hal_rx_dump_pkt_hdr_tlv(struct rx_pkt_tlvs *pkt_tlvs,
*
* Return: ring_id
*/
static inline uint8_t hal_srng_ring_id_get(void *hal_ring)
static inline uint8_t hal_srng_ring_id_get(hal_ring_handle_t hal_ring_hdl)
{
return ((struct hal_srng *)hal_ring)->ring_id;
return ((struct hal_srng *)hal_ring_hdl)->ring_id;
}
/* Rx MSDU link pointer info */