qcacmn: APIs to access core datapath data structures
Non datapath modules use these APIs when they work with datapath module data structures. Change-Id: Ic257c6fc621820199b1691b8e62f7f7109237b01 CRs-Fixed: 993414
This commit is contained in:

committed by
Vishwajith Upendra

父節點
a22c2169fb
當前提交
5f45de5139
@@ -399,6 +399,42 @@ void ol_txrx_print_level_set(unsigned level);
|
||||
#define TXRX_FW_MAC_FETCH_MGR_STATS 22
|
||||
#define TXRX_FW_MAC_PREFETCH_MGR_STATS 23
|
||||
|
||||
/**
|
||||
* ol_txrx_get_vdev_mac_addr() - Return mac addr of vdev
|
||||
* @vdev: vdev handle
|
||||
*
|
||||
* Return: vdev mac address
|
||||
*/
|
||||
uint8_t *
|
||||
ol_txrx_get_vdev_mac_addr(ol_txrx_vdev_handle vdev);
|
||||
|
||||
/**
|
||||
* ol_txrx_get_vdev_struct_mac_addr() - Return handle to struct qdf_mac_addr of
|
||||
* vdev
|
||||
* @vdev: vdev handle
|
||||
*
|
||||
* Return: Handle to struct qdf_mac_addr
|
||||
*/
|
||||
struct qdf_mac_addr *
|
||||
ol_txrx_get_vdev_struct_mac_addr(ol_txrx_vdev_handle vdev);
|
||||
|
||||
/**
|
||||
* ol_txrx_get_pdev_from_vdev() - Return handle to pdev of vdev
|
||||
* @vdev: vdev handle
|
||||
*
|
||||
* Return: Handle to pdev
|
||||
*/
|
||||
ol_txrx_pdev_handle ol_txrx_get_pdev_from_vdev(ol_txrx_vdev_handle vdev);
|
||||
|
||||
/**
|
||||
* ol_txrx_get_ctrl_pdev_from_vdev() - Return control pdev of vdev
|
||||
* @vdev: vdev handle
|
||||
*
|
||||
* Return: Handle to control pdev
|
||||
*/
|
||||
ol_pdev_handle
|
||||
ol_txrx_get_ctrl_pdev_from_vdev(ol_txrx_vdev_handle vdev);
|
||||
|
||||
#endif /* _CDP_TXRX_CMN_H_ */
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user