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
Este commit está contenido en:
Jeff Johnson
2018-12-19 13:17:38 -08:00
cometido por nshrivas
padre de8c2392e1
commit 87ab490a62
Se han modificado 2 ficheros con 0 adiciones y 36 borrados

Ver fichero

@@ -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);
/**
* 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
* including Voice,Video,Besteffort,Background parameters

Ver fichero

@@ -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);
}
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,
struct sir_set_rx_reorder_timeout_val *req)
{