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:
@@ -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);
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user