qcacmn: Add WMI API for setting bandwidth fairness
This change implements the Non-TLV WMI API for setting bandwidth fairness. This WMI command was implemented as part of the recent WIN SW release. This change ensures it is adapted to convergence code structure. Change-Id: Ib9984c43b91b105bfb4687a7591f4fab509febc4 CRs-Fixed: 1060577
This commit is contained in:

committed by
qcabuildsw

parent
42d7c684d4
commit
58f12555ab
@@ -3443,6 +3443,24 @@ QDF_STATUS wmi_unified_pdev_get_tpc_config_cmd_send(void *wmi_hdl,
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
/**
|
||||
* wmi_unified_set_bwf_cmd_send() - WMI set bwf function
|
||||
* @param wmi_handle : handle to WMI.
|
||||
* @param param : pointer to set bwf param
|
||||
*
|
||||
* @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
|
||||
*/
|
||||
QDF_STATUS wmi_unified_set_bwf_cmd_send(void *wmi_hdl,
|
||||
struct set_bwf_params *param)
|
||||
{
|
||||
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
|
||||
|
||||
if (wmi_handle->ops->send_set_bwf_cmd)
|
||||
return wmi_handle->ops->send_set_bwf_cmd(wmi_handle, param);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
/**
|
||||
* wmi_unified_set_atf_cmd_send() - WMI set atf function
|
||||
* @param wmi_handle : handle to WMI.
|
||||
|
Reference in New Issue
Block a user