qcacmn: Introduce HAL API to get phy ppdu id size

Introduce HAL API to get phy ppdu id size.

Change-Id: I125eb344787060336919fb361af032fddeb34526
CRs-Fixed: 3454206
Cette révision appartient à :
Srinivas Girigowda
2023-04-03 16:27:01 -07:00
révisé par Madan Koyyalamudi
Parent 9c855c06e2
révision 980d883f07
6 fichiers modifiés avec 33 ajouts et 1 suppressions

Voir le fichier

@@ -3140,4 +3140,19 @@ bool hal_rx_en_mcast_fp_data_filter(hal_soc_handle_t hal_soc_hdl)
return hal_soc->ops->hal_rx_en_mcast_fp_data_filter();
}
/**
* hal_rx_get_phy_ppdu_id_size() - Get phy ppdu id size
* @hal_soc_hdl: HAL soc handle
*
* Return: phy ppdu id size
*/
static inline uint8_t
hal_rx_get_phy_ppdu_id_size(hal_soc_handle_t hal_soc_hdl)
{
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
return hal_soc->ops->hal_rx_get_phy_ppdu_id_size();
}
#endif /* _HAL_RX_H */