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

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

Change-Id: Id12d6446aed8fd389b8677f08765bb31cabf2fb0
CRs-Fixed: 2475444
此提交包含在:
Himanshu Batra
2019-06-20 12:19:39 +05:30
提交者 nshrivas
父節點 9173c9192d
當前提交 29bc991911
共有 5 個檔案被更改,包括 544 行新增576 行删除

查看文件

@@ -686,11 +686,11 @@ struct vdev_spectral_enable_params;
*/
struct wmi_spectral_cmd_ops {
QDF_STATUS (*wmi_spectral_configure_cmd_send)(
void *wmi_hdl,
struct vdev_spectral_configure_params *param);
wmi_unified_t wmi_hdl,
struct vdev_spectral_configure_params *param);
QDF_STATUS (*wmi_spectral_enable_cmd_send)(
void *wmi_hdl,
struct vdev_spectral_enable_params *param);
wmi_unified_t wmi_hdl,
struct vdev_spectral_enable_params *param);
};
/**