qcacmn: Add wrapper function to get host pdev_id from tgt_pdev_id

Add wrapper function to get host pdev id from target pdev id.

Change-Id: I4628955569d741765efc515949909d9ea358e54a
CRs-Fixed: 2711423
This commit is contained in:
Shashikala Prabhu
2020-07-13 13:02:46 +05:30
committed by snandini
parent 6d11d6f27a
commit 065e48fb63
2 changed files with 33 additions and 0 deletions

View File

@@ -3875,6 +3875,22 @@ QDF_STATUS wmi_convert_pdev_id_host_to_target(wmi_unified_t wmi_handle,
uint32_t host_pdev_id,
uint32_t *target_pdev_id);
#ifndef CNSS_GENL
/**
* wmi_convert_pdev_id_target_to_host() - Convert pdev_id from target to host
* defines. For legacy there is not conversion required. Just return pdev_id as
* it is.
* @wmi_handle: wmi handle
* @target_pdev_id: target pdev_id to be converted.
* @host_pdev_id: Output host pdev id.
*
* Return: QDF_STATUS
*/
QDF_STATUS wmi_convert_pdev_id_target_to_host(wmi_unified_t wmi_handle,
uint32_t target_pdev_id,
uint32_t *host_pdev_id);
#endif
/**
* wmi_unified_send_bss_color_change_enable_cmd() - WMI function to send bss
* color change enable to FW.