qcacmn: Remove unused QDF_DEFAULT_TRACE_LEVEL macro

QDF_DEFAULT_TRACE_LEVEL macro is not getting used in case of
MCL, as part of cleanup of CONFIG_MCL macro dependency,
move this macro definition to correct WIN specific
feature flag.

Change-Id: I75cbfd856308f0027ecb805a41c15966528f314e
CRs-Fixed: 2468286
This commit is contained in:
Ashish Kumar Dhanotiya
2019-04-29 11:57:19 +05:30
committed by nshrivas
parent 030ffadb08
commit f8ddbe1707

View File

@@ -54,10 +54,7 @@
*/
#define QDF_WMI_MTRACE_CMD_ID(message_id) ((message_id) & 0x7F)
#ifdef CONFIG_MCL
#define QDF_DEFAULT_TRACE_LEVEL \
((1 << QDF_TRACE_LEVEL_FATAL) | (1 << QDF_TRACE_LEVEL_ERROR))
#else
#ifdef QDF_TRACE_PRINT_ENABLE
#define QDF_DEFAULT_TRACE_LEVEL (1 << QDF_TRACE_LEVEL_INFO)
#endif