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:
@@ -22,6 +22,7 @@
|
||||
#include "htc_api.h"
|
||||
#include "htc_api.h"
|
||||
#include "wmi_unified_priv.h"
|
||||
#include "wmi_unified_api.h"
|
||||
#include "qdf_module.h"
|
||||
|
||||
#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);
|
||||
#else
|
||||
wmi_handle->rx_ops.wma_process_fw_event_handler_cbk(wmi_handle,
|
||||
evt_buf, exec_ctx);
|
||||
htc_packet, exec_ctx);
|
||||
#endif
|
||||
|
||||
return;
|
||||
@@ -1694,8 +1695,8 @@ static void wmi_process_fw_event_default_ctx(struct wmi_unified *wmi_handle,
|
||||
*
|
||||
* Return: none
|
||||
*/
|
||||
static void wmi_process_fw_event_worker_thread_ctx
|
||||
(struct wmi_unified *wmi_handle, HTC_PACKET *htc_packet)
|
||||
void wmi_process_fw_event_worker_thread_ctx(struct wmi_unified *wmi_handle,
|
||||
HTC_PACKET *htc_packet)
|
||||
{
|
||||
wmi_buf_t evt_buf;
|
||||
|
||||
@@ -1710,6 +1711,8 @@ static void wmi_process_fw_event_worker_thread_ctx
|
||||
return;
|
||||
}
|
||||
|
||||
qdf_export_symbol(wmi_process_fw_event_worker_thread_ctx);
|
||||
|
||||
/**
|
||||
* wmi_get_pdev_ep: Get wmi handle based on endpoint
|
||||
* @soc: handle to wmi soc
|
||||
|
Reference in New Issue
Block a user