瀏覽代碼

qcacmn: Rename target_if_open/close() to target_if_init/deinit()

Rename target_if_open() to target_if_init() and target_if_close()
to target_if_deinit() as these handles global target_if
initializations.

Change-Id: I935eb6461f1774043adaa0539b6e8e0ea9824382
CRs-Fixed: 2352015
Arif Hussain 6 年之前
父節點
當前提交
c2cd7cce95
共有 2 個文件被更改,包括 8 次插入7 次删除
  1. 4 4
      target_if/core/inc/target_if.h
  2. 4 3
      target_if/core/src/target_if_main.c

+ 4 - 4
target_if/core/inc/target_if.h

@@ -319,21 +319,21 @@ struct target_pdev_info {
 
 
 /**
- * target_if_open() - target_if open
+ * target_if_init() - target_if Initialization
  * @get_wmi_handle: function pointer to get wmi handle
  *
  *
  * Return: QDF_STATUS
  */
-QDF_STATUS target_if_open(get_psoc_handle_callback psoc_hdl_cb);
+QDF_STATUS target_if_init(get_psoc_handle_callback psoc_hdl_cb);
 
 /**
- * target_if_close() - Close target_if
+ * target_if_deinit() - Close target_if
  * @scn_handle: scn handle
  *
  * Return: QDF_STATUS_SUCCESS - in case of success
  */
-QDF_STATUS target_if_close(void);
+QDF_STATUS target_if_deinit(void);
 
 /**
  * target_if_store_pdev_target_if_ctx() - stores objmgr pdev in target if ctx

+ 4 - 3
target_if/core/src/target_if_main.c

@@ -130,7 +130,7 @@ static QDF_STATUS target_if_direct_buf_rx_deinit(void)
 }
 #endif /* DIRECT_BUF_RX_ENABLE */
 
-QDF_STATUS target_if_open(get_psoc_handle_callback psoc_hdl_cb)
+QDF_STATUS target_if_init(get_psoc_handle_callback psoc_hdl_cb)
 {
 	g_target_if_ctx = qdf_mem_malloc(sizeof(*g_target_if_ctx));
 	if (!g_target_if_ctx) {
@@ -151,7 +151,7 @@ QDF_STATUS target_if_open(get_psoc_handle_callback psoc_hdl_cb)
 	return QDF_STATUS_SUCCESS;
 }
 
-QDF_STATUS target_if_close(void)
+QDF_STATUS target_if_deinit(void)
 {
 	if (!g_target_if_ctx) {
 		QDF_ASSERT(0);
@@ -174,7 +174,8 @@ QDF_STATUS target_if_close(void)
 
 	return QDF_STATUS_SUCCESS;
 }
-qdf_export_symbol(target_if_close);
+
+qdf_export_symbol(target_if_deinit);
 
 QDF_STATUS target_if_store_pdev_target_if_ctx(
 		get_pdev_handle_callback pdev_hdl_cb)