qcacmn: Setkey convergence for TLV and non-TLV boards

Changes to use single structure for setkey in TLV and non-TLV cases.

Change-Id: I4cb249ec15beeced5223d8593a3a7fdb5645462c
CRs-fixed: 1117377
This commit is contained in:
Gurumoorthi Gnanasambandhan
2017-01-10 20:51:02 +05:30
committed by qcabuildsw
parent 7deb4b3287
commit bdee34067b
3 changed files with 25 additions and 100 deletions

View File

@@ -4297,27 +4297,6 @@ QDF_STATUS wmi_unified_vdev_config_ratemask_cmd_send(void *wmi_hdl,
return QDF_STATUS_E_FAILURE;
}
/**
* wmi_unified_vdev_install_key_cmd_send() - WMI install key function
* @param wmi_handle : handle to WMI.
* @param macaddr : MAC address
* @param param : pointer to hold key parameter
*
* @return QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
*/
QDF_STATUS wmi_unified_vdev_install_key_cmd_send(void *wmi_hdl,
uint8_t macaddr[IEEE80211_ADDR_LEN],
struct vdev_install_key_params *param)
{
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
if (wmi_handle->ops->send_vdev_install_key_cmd)
return wmi_handle->ops->send_vdev_install_key_cmd(wmi_handle,
macaddr, param);
return QDF_STATUS_E_FAILURE;
}
/**
* wmi_unified_pdev_set_regdomain_params_cmd_send() - WMI set regdomain function
* @param wmi_handle : handle to WMI.