qcacld-3.0: Remove sme_ipa_uc_stat_request()
Change Id4691e0f490c2f9bd9ccc8d5225be32002a5df9e ("qcacld-3.0: Remove legacy IPA code from HDD") removed the last client of sme_ipa_uc_stat_request(). Since the function is unused, remove it. Change-Id: Ib9cdaf7e8aa019002b9fc02d8ffacfcdb28fc121 CRs-Fixed: 2371153
This commit is contained in:
@@ -2082,19 +2082,6 @@ QDF_STATUS sme_set_dbs_scan_selection_config(mac_handle_t mac_handle,
|
|||||||
*/
|
*/
|
||||||
void sme_store_pdev(mac_handle_t mac_handle, struct wlan_objmgr_pdev *pdev);
|
void sme_store_pdev(mac_handle_t mac_handle, struct wlan_objmgr_pdev *pdev);
|
||||||
|
|
||||||
/**
|
|
||||||
* sme_ipa_uc_stat_request() - set ipa config parameters
|
|
||||||
* @vdev_id: virtual device for the command
|
|
||||||
* @param_id: parameter id
|
|
||||||
* @param_val: parameter value
|
|
||||||
* @req_cat: parameter category
|
|
||||||
*
|
|
||||||
* Return: QDF_STATUS_SUCCESS or non-zero on failure
|
|
||||||
*/
|
|
||||||
QDF_STATUS sme_ipa_uc_stat_request(mac_handle_t mac_handle,
|
|
||||||
uint32_t vdev_id, uint32_t param_id,
|
|
||||||
uint32_t param_val, uint32_t req_cat);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sme_set_reorder_timeout() - set reorder timeout value
|
* sme_set_reorder_timeout() - set reorder timeout value
|
||||||
* including Voice,Video,Besteffort,Background parameters
|
* including Voice,Video,Besteffort,Background parameters
|
||||||
|
@@ -14779,29 +14779,6 @@ QDF_STATUS sme_set_smps_cfg(uint32_t vdev_id, uint32_t param_id,
|
|||||||
return wma_configure_smps_params(vdev_id, param_id, param_val);
|
return wma_configure_smps_params(vdev_id, param_id, param_val);
|
||||||
}
|
}
|
||||||
|
|
||||||
QDF_STATUS sme_ipa_uc_stat_request(mac_handle_t mac_handle, uint32_t vdev_id,
|
|
||||||
uint32_t param_id, uint32_t param_val,
|
|
||||||
uint32_t req_cat)
|
|
||||||
{
|
|
||||||
wma_cli_set_cmd_t *iwcmd;
|
|
||||||
QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
||||||
|
|
||||||
iwcmd = qdf_mem_malloc(sizeof(*iwcmd));
|
|
||||||
if (!iwcmd)
|
|
||||||
return QDF_STATUS_E_NOMEM;
|
|
||||||
|
|
||||||
qdf_mem_zero(iwcmd, sizeof(*iwcmd));
|
|
||||||
iwcmd->param_sec_value = 0;
|
|
||||||
iwcmd->param_vdev_id = vdev_id;
|
|
||||||
iwcmd->param_id = param_id;
|
|
||||||
iwcmd->param_vp_dev = req_cat;
|
|
||||||
iwcmd->param_value = param_val;
|
|
||||||
wma_ipa_uc_stat_request(iwcmd);
|
|
||||||
qdf_mem_free(iwcmd);
|
|
||||||
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
|
|
||||||
QDF_STATUS sme_set_reorder_timeout(mac_handle_t mac_handle,
|
QDF_STATUS sme_set_reorder_timeout(mac_handle_t mac_handle,
|
||||||
struct sir_set_rx_reorder_timeout_val *req)
|
struct sir_set_rx_reorder_timeout_val *req)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user