Browse Source

qcacld-3.0: remove dependency of public files from wlan_objmgr_psoc_obj.h

Remove dependency of wlan_lmac_if_def headerfiles from
wlan_objmgr_psoc_obj.h

Change-Id: I5f6120a97be3ae6835023ceaef455088820809de
CRs-Fixed: 2657771
Abhishek Singh 5 years ago
parent
commit
2281c2d6bb

+ 1 - 0
components/p2p/core/src/wlan_p2p_main.h

@@ -30,6 +30,7 @@
 #include <qdf_lock.h>
 #include <qdf_idr.h>
 #include <qdf_mc_timer.h>
+#include <wlan_scan_public_structs.h>
 
 #define MAX_QUEUE_LENGTH 20
 #define P2P_NOA_ATTR_IND 0x1090

+ 1 - 1
components/p2p/core/src/wlan_p2p_off_chan_tx.c

@@ -46,7 +46,7 @@
 static inline struct wlan_lmac_if_p2p_tx_ops *
 p2p_psoc_get_tx_ops(struct wlan_objmgr_psoc *psoc)
 {
-	return &psoc->soc_cb.tx_ops.p2p;
+	return &psoc->soc_cb.tx_ops->p2p;
 }
 
 /**

+ 2 - 2
components/p2p/dispatcher/src/wlan_p2p_tgt_api.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -40,7 +40,7 @@
 static inline struct wlan_lmac_if_p2p_tx_ops *
 wlan_psoc_get_p2p_tx_ops(struct wlan_objmgr_psoc *psoc)
 {
-	return &(psoc->soc_cb.tx_ops.p2p);
+	return &(psoc->soc_cb.tx_ops->p2p);
 }
 
 #ifdef FEATURE_P2P_LISTEN_OFFLOAD

+ 1 - 1
components/p2p/dispatcher/src/wlan_p2p_ucfg_api.c

@@ -33,7 +33,7 @@
 static inline struct wlan_lmac_if_p2p_tx_ops *
 ucfg_p2p_psoc_get_tx_ops(struct wlan_objmgr_psoc *psoc)
 {
-	return &(psoc->soc_cb.tx_ops.p2p);
+	return &(psoc->soc_cb.tx_ops->p2p);
 }
 
 /**

+ 2 - 2
components/target_if/p2p/src/target_if_p2p.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -29,7 +29,7 @@
 static inline struct wlan_lmac_if_p2p_rx_ops *
 target_if_psoc_get_p2p_rx_ops(struct wlan_objmgr_psoc *psoc)
 {
-	return &(psoc->soc_cb.rx_ops.p2p);
+	return &(psoc->soc_cb.rx_ops->p2p);
 }
 
 #ifdef FEATURE_P2P_LISTEN_OFFLOAD

+ 2 - 2
components/target_if/tdls/src/target_if_tdls.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -36,7 +36,7 @@
 static inline struct wlan_lmac_if_tdls_rx_ops *
 target_if_tdls_get_rx_ops(struct wlan_objmgr_psoc *psoc)
 {
-	return &psoc->soc_cb.rx_ops.tdls_rx_ops;
+	return &psoc->soc_cb.rx_ops->tdls_rx_ops;
 }
 
 static int

+ 3 - 3
components/tdls/dispatcher/src/wlan_tdls_tgt_api.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -31,13 +31,13 @@
 static inline struct wlan_lmac_if_tdls_tx_ops *
 wlan_psoc_get_tdls_txops(struct wlan_objmgr_psoc *psoc)
 {
-	return &psoc->soc_cb.tx_ops.tdls_tx_ops;
+	return &psoc->soc_cb.tx_ops->tdls_tx_ops;
 }
 
 static inline struct wlan_lmac_if_tdls_rx_ops *
 wlan_psoc_get_tdls_rxops(struct wlan_objmgr_psoc *psoc)
 {
-	return &psoc->soc_cb.rx_ops.tdls_rx_ops;
+	return &psoc->soc_cb.rx_ops->tdls_rx_ops;
 }
 
 QDF_STATUS tgt_tdls_set_fw_state(struct wlan_objmgr_psoc *psoc,

+ 3 - 0
core/hdd/src/wlan_hdd_main.c

@@ -186,6 +186,7 @@
 #include "wlan_hdd_debugfs_unit_test.h"
 #include "wlan_hdd_debugfs_mibstat.h"
 #include <wlan_hdd_hang_event.h>
+#include "wlan_global_lmac_if_api.h"
 
 #ifdef MODULE
 #define WLAN_MODULE_NAME  module_name(THIS_MODULE)
@@ -12868,6 +12869,8 @@ int hdd_wlan_stop_modules(struct hdd_context *hdd_ctx, bool ftm_mode)
 			hdd_err("Failed to destroy pdev; errno:%d", ret);
 			QDF_ASSERT(0);
 		}
+		/* pdev close and destroy use tx rx ops so call this here */
+		wlan_global_lmac_if_close(hdd_ctx->psoc);
 	}
 
 	/*

+ 0 - 17
core/wma/src/wma_main.c

@@ -1963,22 +1963,6 @@ static void wma_target_if_open(tp_wma_handle wma_handle)
 
 }
 
-/**
- * wma_target_if_close() - Detach UMAC modules' interface with wmi layer
- * @wma_handle: wma handle
- *
- * Return: None
- */
-static void wma_target_if_close(tp_wma_handle wma_handle)
-{
-	struct wlan_objmgr_psoc *psoc = wma_handle->psoc;
-
-	if (!psoc)
-		return;
-
-	wlan_global_lmac_if_close(psoc);
-}
-
 /**
  * wma_legacy_service_ready_event_handler() - legacy (ext)service ready handler
  * @event_id: event_id
@@ -4519,7 +4503,6 @@ QDF_STATUS wma_close(void)
 
 	wlan_objmgr_psoc_release_ref(wma_handle->psoc, WLAN_LEGACY_WMA_ID);
 	wma_handle->psoc = NULL;
-	wma_target_if_close(wma_handle);
 
 	WMA_LOGD("%s: Exit", __func__);
 	return QDF_STATUS_SUCCESS;