qcacmn: Remove code relating to ocl_cfg

As part of removing gOclCfg ini, remove code used for it that is
no longer needed.

Change-Id: I00c32988cb3b852381be9810377aeefdd22454db
CRs-Fixed: 2791469
This commit is contained in:
Alan Chen
2020-10-05 14:42:06 -07:00
committed by snandini
parent 936ca8fe36
commit bc0d7713ed
5 changed files with 0 additions and 79 deletions

View File

@@ -1009,10 +1009,6 @@ QDF_STATUS (*send_process_del_periodic_tx_ptrn_cmd)(wmi_unified_t wmi_handle,
QDF_STATUS (*send_set_auto_shutdown_timer_cmd)(wmi_unified_t wmi_handle, QDF_STATUS (*send_set_auto_shutdown_timer_cmd)(wmi_unified_t wmi_handle,
uint32_t timer_val); uint32_t timer_val);
QDF_STATUS
(*send_ocl_cmd)(wmi_unified_t wmi_handle,
struct ocl_cmd_params *param);
#ifdef WLAN_FEATURE_NAN #ifdef WLAN_FEATURE_NAN
QDF_STATUS (*send_nan_req_cmd)(wmi_unified_t wmi_handle, QDF_STATUS (*send_nan_req_cmd)(wmi_unified_t wmi_handle,
struct nan_msg_params *nan_req); struct nan_msg_params *nan_req);

View File

@@ -452,17 +452,4 @@ QDF_STATUS wmi_unified_peer_unmap_conf_send(wmi_unified_t wmi_handle,
uint32_t peer_id_cnt, uint32_t peer_id_cnt,
uint16_t *peer_id_list); uint16_t *peer_id_list);
/**
* wmi_unified_send_ocl_cmd() - send OCL command
* @wmi_handle: wmi handle
* @param: OCL commang parameters
*
* Send WMI_SET_OCL_CMDID parameters to fw.
*
* Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
*/
QDF_STATUS
wmi_unified_send_ocl_cmd(wmi_unified_t wmi_handle,
struct ocl_cmd_params *param);
#endif /* _WMI_UNIFIED_STA_API_H_ */ #endif /* _WMI_UNIFIED_STA_API_H_ */

View File

@@ -363,14 +363,4 @@ struct get_arp_stats {
uint32_t vdev_id; uint32_t vdev_id;
}; };
/**
* struct ocl_cmd_params - OCL command params
* @vdev_id: Virtual AP device identifier
* @en_dis_chain: enable/disable dynamic/static OCL mode
*/
struct ocl_cmd_params {
uint32_t vdev_id;
uint32_t en_dis_chain;
};
#endif /* _WMI_UNIFIED_STA_PARAM_H_ */ #endif /* _WMI_UNIFIED_STA_PARAM_H_ */

View File

@@ -415,13 +415,3 @@ QDF_STATUS wmi_unified_peer_unmap_conf_send(wmi_unified_t wmi_handle,
return QDF_STATUS_E_FAILURE; return QDF_STATUS_E_FAILURE;
} }
QDF_STATUS
wmi_unified_send_ocl_cmd(wmi_unified_t wmi_handle,
struct ocl_cmd_params *param)
{
if (wmi_handle->ops->send_ocl_cmd)
return wmi_handle->ops->send_ocl_cmd(wmi_handle, param);
return QDF_STATUS_E_FAILURE;
}

View File

@@ -2397,47 +2397,6 @@ static QDF_STATUS send_peer_unmap_conf_cmd_tlv(wmi_unified_t wmi,
return QDF_STATUS_SUCCESS; return QDF_STATUS_SUCCESS;
} }
/**
* send_ocl_cmd_tlv() - send ocl command to fw
* @wmi_handle: wmi handle
* @param: pointer to coex config param
*
* Return: 0 for success or error code
*/
static QDF_STATUS
send_ocl_cmd_tlv(wmi_unified_t wmi_handle, struct ocl_cmd_params *param)
{
wmi_set_ocl_cmd_fixed_param *cmd;
wmi_buf_t buf;
QDF_STATUS ret;
int32_t len;
len = sizeof(*cmd);
buf = wmi_buf_alloc(wmi_handle, len);
if (!buf)
return QDF_STATUS_E_FAILURE;
cmd = (wmi_set_ocl_cmd_fixed_param *)wmi_buf_data(buf);
WMITLV_SET_HDR(&cmd->tlv_header,
WMITLV_TAG_STRUC_wmi_set_ocl_cmd_fixed_param,
WMITLV_GET_STRUCT_TLVLEN(
wmi_set_ocl_cmd_fixed_param));
cmd->vdev_id = param->vdev_id;
cmd->en_dis_chain = param->en_dis_chain;
wmi_mtrace(WMI_SET_OCL_CMDID, cmd->vdev_id, 0);
ret = wmi_unified_cmd_send(wmi_handle, buf, len,
WMI_SET_OCL_CMDID);
if (ret != 0) {
wmi_err("Sending OCL CMD failed");
wmi_buf_free(buf);
}
return ret;
}
void wmi_sta_attach_tlv(wmi_unified_t wmi_handle) void wmi_sta_attach_tlv(wmi_unified_t wmi_handle)
{ {
struct wmi_ops *ops = wmi_handle->ops; struct wmi_ops *ops = wmi_handle->ops;
@@ -2479,7 +2438,6 @@ void wmi_sta_attach_tlv(wmi_unified_t wmi_handle)
ops->send_set_arp_stats_req_cmd = send_set_arp_stats_req_cmd_tlv; ops->send_set_arp_stats_req_cmd = send_set_arp_stats_req_cmd_tlv;
ops->send_get_arp_stats_req_cmd = send_get_arp_stats_req_cmd_tlv; ops->send_get_arp_stats_req_cmd = send_get_arp_stats_req_cmd_tlv;
ops->send_peer_unmap_conf_cmd = send_peer_unmap_conf_cmd_tlv; ops->send_peer_unmap_conf_cmd = send_peer_unmap_conf_cmd_tlv;
ops->send_ocl_cmd = send_ocl_cmd_tlv;
wmi_tdls_attach_tlv(wmi_handle); wmi_tdls_attach_tlv(wmi_handle);
wmi_policy_mgr_attach_tlv(wmi_handle); wmi_policy_mgr_attach_tlv(wmi_handle);