diff options
| author | Sandeep Puligilla <spuligil@codeaurora.org> | 2017-08-22 11:45:27 -0700 |
|---|---|---|
| committer | snandini <snandini@codeaurora.org> | 2017-09-19 01:40:58 -0700 |
| commit | 286a70c6fc4bc78c954fa2c66719eddab20f9741 (patch) | |
| tree | d088559dbc24aa6c5f881fe41d734b74caeb8963 /core/utils | |
| parent | 19a3d069735e8ca8b1a7c7036e4719088892527b (diff) | |
qcacld-3.0: Update enum DBGLOG_LOG_LVL typedef
DBGLOG_LOG_LVL is defined as typedef
at firmware file dbglog.h so this needs to updated
in host accrodingly to avoid compilation
warnings.
Change-Id: I5a4bfadf2cbec753d3ff1076376f93d6a5549f65
CRs-Fixed: 2097226
Diffstat (limited to 'core/utils')
| -rw-r--r-- | core/utils/fwlog/dbglog_host.c | 2 | ||||
| -rw-r--r-- | core/utils/fwlog/dbglog_host.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/utils/fwlog/dbglog_host.c b/core/utils/fwlog/dbglog_host.c index 9ad9fed45867..ad26d93d5a39 100644 --- a/core/utils/fwlog/dbglog_host.c +++ b/core/utils/fwlog/dbglog_host.c @@ -1308,7 +1308,7 @@ int dbglog_vap_log_enable(wmi_unified_t wmi_handle, A_UINT16 vap_id, return 0; } -int dbglog_set_log_lvl(wmi_unified_t wmi_handle, enum DBGLOG_LOG_LVL log_lvl) +int dbglog_set_log_lvl(wmi_unified_t wmi_handle, DBGLOG_LOG_LVL log_lvl) { A_UINT32 val = 0; diff --git a/core/utils/fwlog/dbglog_host.h b/core/utils/fwlog/dbglog_host.h index 8bdf8906a12c..0dbe9d47aa66 100644 --- a/core/utils/fwlog/dbglog_host.h +++ b/core/utils/fwlog/dbglog_host.h @@ -124,7 +124,7 @@ dbglog_report_enable(wmi_unified_t wmi_handle, A_BOOL isenable); * @brief DBGLOG_ERROR - default log level */ int -dbglog_set_log_lvl(wmi_unified_t wmi_handle, enum DBGLOG_LOG_LVL log_lvl); +dbglog_set_log_lvl(wmi_unified_t wmi_handle, DBGLOG_LOG_LVL log_lvl); /* * set the debug log level for a given module |
