qca-wifi: Support for FR53778 8021p pcp-tid mapping
Add necessary support for pcp-tid mapping feature Change-Id: I64535d71b937d8380d611e7413b118d70c68a3a6
This commit is contained in:
@@ -1141,3 +1141,43 @@ QDF_STATUS wmi_unified_peer_del_all_wds_entries_cmd_send(void *wmi_hdl,
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
/**
|
||||
* wmi_unified_vdev_pcp_tid_map_cmd_send() - WMI set vap pcp
|
||||
* tid map cmd function
|
||||
* @param wmi_handle : handle to WMI.
|
||||
* @param param : pointer to hold pcp param
|
||||
*
|
||||
* @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
|
||||
*/
|
||||
QDF_STATUS
|
||||
wmi_unified_vdev_pcp_tid_map_cmd_send(void *wmi_hdl,
|
||||
struct vap_pcp_tid_map_params *param)
|
||||
{
|
||||
wmi_unified_t wmi = (wmi_unified_t) wmi_hdl;
|
||||
|
||||
if (wmi->ops->send_vdev_pcp_tid_map_cmd)
|
||||
return wmi->ops->send_vdev_pcp_tid_map_cmd(wmi, param);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
/**
|
||||
* wmi_unified_vdev_tidmap_prec_cmd_send() - WMI set vap tidmap precedence
|
||||
* cmd function
|
||||
* @param wmi_handle : handle to WMI.
|
||||
* @param param : pointer to hold precedence param
|
||||
*
|
||||
* @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
|
||||
*/
|
||||
QDF_STATUS
|
||||
wmi_unified_vdev_tidmap_prec_cmd_send(void *wmi_hdl,
|
||||
struct vap_tidmap_prec_params *param)
|
||||
{
|
||||
wmi_unified_t wmi = (wmi_unified_t) wmi_hdl;
|
||||
|
||||
if (wmi->ops->send_vdev_tidmap_prec_cmd)
|
||||
return wmi->ops->send_vdev_tidmap_prec_cmd(wmi, param);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user