qcacmn: Replace void * wmi_hdl with abstract type (7/10)

Replace void * wmi handle with abstract type handles
provided by wmi component.

Change-Id: I53d14cc548e0d9aae4de7db4dcf6f63ed2a74fe5
CRs-Fixed: 2482590
This commit is contained in:
Himanshu Batra
2019-06-28 15:45:49 +05:30
committed by nshrivas
parent 4644ff4331
commit cefe93ef3b
6 changed files with 186 additions and 205 deletions

View File

@@ -47,34 +47,34 @@ QDF_STATUS wmi_unified_nan_disable_req_cmd(wmi_unified_t wmi_handle,
/**
* wmi_unified_ndp_initiator_req_cmd_send - api to send initiator request to FW
* @wmi_hdl: wmi handle
* @wmi_handle: wmi handle
* @req: pointer to request buffer
*
* Return: status of operation
*/
QDF_STATUS
wmi_unified_ndp_initiator_req_cmd_send(void *wmi_hdl,
wmi_unified_ndp_initiator_req_cmd_send(wmi_unified_t wmi_handle,
struct nan_datapath_initiator_req *req);
/**
* wmi_unified_ndp_responder_req_cmd_send - api to send responder request to FW
* @wmi_hdl: wmi handle
* @wmi_handle: wmi handle
* @req: pointer to request buffer
*
* Return: status of operation
*/
QDF_STATUS
wmi_unified_ndp_responder_req_cmd_send(void *wmi_hdl,
wmi_unified_ndp_responder_req_cmd_send(wmi_unified_t wmi_handle,
struct nan_datapath_responder_req *req);
/**
* wmi_unified_ndp_end_req_cmd_send - api to send end request to FW
* @wmi_hdl: wmi handle
* @wmi_handle: wmi handle
* @req: pointer to request buffer
*
* Return: status of operation
*/
QDF_STATUS wmi_unified_ndp_end_req_cmd_send(void *wmi_hdl,
QDF_STATUS wmi_unified_ndp_end_req_cmd_send(wmi_unified_t wmi_handle,
struct nan_datapath_end_req *req);
/**