qca-wifi: Remove redundant data structure for wmi response extraction

Remove redundant data structure at wmi for vdev start
response extraction, instead use mlme host data structure.

Change-Id: Icc28493722546f3c37e8a90d3182becb3af6557b
CRs-Fixed: 2641083
This commit is contained in:
Naga
2020-03-13 14:45:25 +05:30
committed by Gerrit - the friendly Code Review server
parent cea05d2bde
commit 56b668bb64
2 changed files with 5 additions and 4 deletions

View File

@@ -625,7 +625,7 @@ QDF_STATUS wmi_unified_wmm_update_cmd_send(wmi_unified_t wmi_handle,
*/
QDF_STATUS wmi_extract_vdev_start_resp(
wmi_unified_t wmi_handle, void *evt_buf,
wmi_host_vdev_start_resp *vdev_rsp);
struct vdev_start_response *vdev_rsp);
/**
* wmi_extract_vdev_delete_resp - api to extract vdev delete

View File

@@ -7439,9 +7439,10 @@ static QDF_STATUS extract_fips_event_data_non_tlv(wmi_unified_t wmi_handle,
*
* Return: 0 for success or error code
*/
static QDF_STATUS extract_vdev_start_resp_non_tlv(wmi_unified_t wmi_handle,
static QDF_STATUS extract_vdev_start_resp_non_tlv(
wmi_unified_t wmi_handle,
void *evt_buf,
wmi_host_vdev_start_resp *vdev_rsp)
struct vdev_start_response *vdev_rsp)
{
wmi_vdev_start_response_event *ev =
(wmi_vdev_start_response_event *) evt_buf;