qcacmn: Make worker thread processing API non static

Worker thread WMI processing API has more broader use now. So make it
non-static.

CRs-Fixed: 2268243
Change-Id: Iae51e1115f5f3664d08c891e8a42d24bd3ef7bcf
This commit is contained in:
Amar Singhal
2018-06-26 16:45:54 -07:00
committed by nshrivas
parent 0d0f935b47
commit 66d1ed5dac

View File

@@ -22,6 +22,7 @@
#include "htc_api.h" #include "htc_api.h"
#include "htc_api.h" #include "htc_api.h"
#include "wmi_unified_priv.h" #include "wmi_unified_priv.h"
#include "wmi_unified_api.h"
#include "qdf_module.h" #include "qdf_module.h"
#ifndef WMI_NON_TLV_SUPPORT #ifndef WMI_NON_TLV_SUPPORT
@@ -1677,7 +1678,7 @@ static void wmi_process_fw_event_default_ctx(struct wmi_unified *wmi_handle,
(wmi_handle->scn_handle, evt_buf, exec_ctx); (wmi_handle->scn_handle, evt_buf, exec_ctx);
#else #else
wmi_handle->rx_ops.wma_process_fw_event_handler_cbk(wmi_handle, wmi_handle->rx_ops.wma_process_fw_event_handler_cbk(wmi_handle,
evt_buf, exec_ctx); htc_packet, exec_ctx);
#endif #endif
return; return;
@@ -1694,8 +1695,8 @@ static void wmi_process_fw_event_default_ctx(struct wmi_unified *wmi_handle,
* *
* Return: none * Return: none
*/ */
static void wmi_process_fw_event_worker_thread_ctx void wmi_process_fw_event_worker_thread_ctx(struct wmi_unified *wmi_handle,
(struct wmi_unified *wmi_handle, HTC_PACKET *htc_packet) HTC_PACKET *htc_packet)
{ {
wmi_buf_t evt_buf; wmi_buf_t evt_buf;
@@ -1710,6 +1711,8 @@ static void wmi_process_fw_event_worker_thread_ctx
return; return;
} }
qdf_export_symbol(wmi_process_fw_event_worker_thread_ctx);
/** /**
* wmi_get_pdev_ep: Get wmi handle based on endpoint * wmi_get_pdev_ep: Get wmi handle based on endpoint
* @soc: handle to wmi soc * @soc: handle to wmi soc