Browse Source

qcacld-3.0: Change the cm ext init function to pass ext ptr

Change the cm ext init function to pass ext ptr.

Change-Id: I6c40bb54b96b94bec66d161ae924cd723720357d
CRs-Fixed: 2907938
gaurank kathpalia 4 years ago
parent
commit
b8c690744f
1 changed files with 12 additions and 7 deletions
  1. 12 7
      components/umac/mlme/connection_mgr/core/src/wlan_cm_vdev_api.h

+ 12 - 7
components/umac/mlme/connection_mgr/core/src/wlan_cm_vdev_api.h

@@ -266,21 +266,26 @@ void cm_csr_disconnect_on_wait_key_timeout(uint8_t vdev_id);
 #endif
 
 #ifdef FEATURE_CM_ENABLE
-static inline QDF_STATUS cm_ext_hdl_create(struct cnx_mgr *cm_ctx)
+static inline QDF_STATUS
+cm_ext_hdl_create(struct wlan_objmgr_vdev *vdev, cm_ext_t **ext_cm_ptr)
 {
-	cm_ctx->ext_cm_ptr = qdf_mem_malloc(sizeof(struct cm_ext_obj));
-	if (!cm_ctx->ext_cm_ptr)
+	struct cm_ext_obj *cm_obj;
+
+	*ext_cm_ptr = qdf_mem_malloc(sizeof(struct cm_ext_obj));
+	if (!*ext_cm_ptr)
 		return QDF_STATUS_E_NOMEM;
 
-	wlan_cm_rso_config_init(cm_ctx->vdev, &cm_ctx->ext_cm_ptr->rso_cfg);
+	cm_obj = *ext_cm_ptr;
+	wlan_cm_rso_config_init(vdev, &cm_obj->rso_cfg);
 
 	return QDF_STATUS_SUCCESS;
 }
 
-static inline QDF_STATUS cm_ext_hdl_destroy(struct cnx_mgr *cm_ctx)
+static inline QDF_STATUS
+cm_ext_hdl_destroy(struct wlan_objmgr_vdev *vdev, cm_ext_t *ext_cm_ptr)
 {
-	wlan_cm_rso_config_deinit(cm_ctx->vdev, &cm_ctx->ext_cm_ptr->rso_cfg);
-	qdf_mem_free(cm_ctx->ext_cm_ptr);
+	wlan_cm_rso_config_deinit(vdev, &ext_cm_ptr->rso_cfg);
+	qdf_mem_free(ext_cm_ptr);
 
 	return QDF_STATUS_SUCCESS;
 }