qcacmn: Replace void * data members of mlme with specific type

Replace mlme void * data members having different types across
different drivers with specific type.

Change-Id: I4343800e836c8ae0996c19b39a420b314e465a75
CRs-Fixed: 2477457
Este commit está contenido en:
Himanshu Batra
2019-05-31 11:50:10 +05:30
cometido por nshrivas
padre e92fe029df
commit 1b60b56578
Se han modificado 6 ficheros con 15 adiciones y 8 borrados

Ver fichero

@@ -21,6 +21,7 @@
#ifndef _WLAN_VDEV_MLME_API_H_
#define _WLAN_VDEV_MLME_API_H_
#include <wlan_ext_mlme_obj_types.h>
/**
* wlan_vdev_mlme_get_cmpt_obj - Retrieves MLME component object
* from VDEV object
@@ -42,7 +43,8 @@ struct vdev_mlme_obj *wlan_vdev_mlme_get_cmpt_obj(
*
* Return:
*/
void wlan_vdev_mlme_set_ext_hdl(struct wlan_objmgr_vdev *vdev, void *ext_hdl);
void wlan_vdev_mlme_set_ext_hdl(struct wlan_objmgr_vdev *vdev,
mlme_vdev_ext_t *ext_hdl);
/**
* wlan_vdev_mlme_get_ext_hdl - Returns legacy handle
@@ -53,7 +55,7 @@ void wlan_vdev_mlme_set_ext_hdl(struct wlan_objmgr_vdev *vdev, void *ext_hdl);
* Return: legacy handle on SUCCESS
* NULL, if it fails to retrieve
*/
void *wlan_vdev_mlme_get_ext_hdl(struct wlan_objmgr_vdev *vdev);
mlme_vdev_ext_t *wlan_vdev_mlme_get_ext_hdl(struct wlan_objmgr_vdev *vdev);
/**
* wlan_vdev_mlme_sm_deliver_evt() - Delivers event to VDEV MLME SM