qcacmn: Featurize dbglog_host

Featurize parsing support for WLAN firmware logs in WLAN host driver

Change-Id: I94a75a0ab09f086209298bdd4870df78e9733a3f
CRs-Fixed: 2228370
This commit is contained in:
Wen Gong
2018-04-20 16:56:28 +08:00
committed by nshrivas
parent 6417448381
commit 583a3b1b18
4 changed files with 75 additions and 1 deletions

View File

@@ -535,8 +535,17 @@ QDF_STATUS wmi_unified_pdev_utf_cmd_send(void *wmi_hdl,
struct pdev_utf_params *param,
uint8_t mac_id);
#ifdef FEATURE_FW_LOG_PARSING
QDF_STATUS wmi_unified_dbglog_cmd_send(void *wmi_hdl,
struct dbglog_params *param);
struct dbglog_params *param);
#else
static inline QDF_STATUS
wmi_unified_dbglog_cmd_send(void *wmi_hdl,
struct dbglog_params *param)
{
return QDF_STATUS_SUCCESS;
}
#endif
QDF_STATUS wmi_mgmt_unified_cmd_send(void *wmi_hdl,
struct wmi_mgmt_params *param);