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
کامیت شده توسط nshrivas
والد 6417448381
کامیت 583a3b1b18
4فایلهای تغییر یافته به همراه75 افزوده شده و 1 حذف شده

مشاهده پرونده

@@ -69,6 +69,7 @@ extern "C" {
#define DIAG_GET_PAYLEN16(arg) \
((arg & DIAG_PAYLEN_MASK16) >> DIAG_PAYLEN_OFFSET16)
#ifdef FEATURE_FW_LOG_PARSING
/*
* set the dbglog parser type
*/int
@@ -166,6 +167,64 @@ dbglog_parse_debug_logs(ol_scn_t scn, u_int8_t *datap,
/** Register the cnss_diag activate with the wlan driver */
int cnss_diag_activate_service(void);
#else
static inline int
dbglog_parser_type_init(wmi_unified_t wmi_handle, int type)
{
return A_OK;
}
static inline int
dbglog_init(wmi_unified_t wmi_handle)
{
return A_OK;
}
static inline int
dbglog_deinit(wmi_unified_t wmi_handle)
{
return A_OK;
}
static inline int
dbglog_report_enable(wmi_unified_t wmi_handle, A_BOOL isenable)
{
return A_OK;
}
#ifdef CONFIG_MCL
static inline int
dbglog_set_log_lvl(wmi_unified_t wmi_handle, DBGLOG_LOG_LVL log_lvl)
{
return A_OK;
}
#endif
static inline int cnss_diag_activate_service(void)
{
return A_OK;
}
static inline int
dbglog_module_log_enable(wmi_unified_t wmi_handle, uint32_t mod_id,
A_BOOL isenable)
{
return A_OK;
}
static inline int
dbglog_vap_log_enable(wmi_unified_t wmi_handle, uint16_t vap_id,
A_BOOL isenable)
{
return A_OK;
}
static inline int
dbglog_set_mod_log_lvl(wmi_unified_t wmi_handle, uint32_t mod_id_lvl)
{
return A_OK;
}
#endif /* FEATURE_FW_LOG_PARSING */
#ifdef __cplusplus
}