qcacmn: Add code to remove void pointer usage

Add code to remove void pointer usage for hal_soc
and introduce opaque pointer to be used intead of void
from dp layer into hal layer

Change-Id: Ia38571174c6ed79558d0f0c9cd1a0f4afaa66483
CRs-Fixed: 2480857
このコミットが含まれているのは:
Akshay Kosigi
2019-06-10 23:14:52 +05:30
committed by nshrivas
コミット 6a206753d6
11個のファイルの変更222行の追加134行の削除

ファイルの表示

@@ -537,12 +537,16 @@ static inline void hal_rx_proc_phyrx_other_receive_info_tlv(struct hal_soc *hal_
*/
static inline uint32_t
hal_rx_status_get_tlv_info(void *rx_tlv_hdr, void *ppdu_info,
struct hal_soc *hal_soc,
hal_soc_handle_t hal_soc_hdl,
qdf_nbuf_t nbuf)
{
return hal_soc->ops->hal_rx_status_get_tlv_info(rx_tlv_hdr,
ppdu_info, hal_soc,
nbuf);
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
return hal_soc->ops->hal_rx_status_get_tlv_info(
rx_tlv_hdr,
ppdu_info,
hal_soc_hdl,
nbuf);
}
static inline