Parcourir la source

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
Ashish Kumar Dhanotiya il y a 6 ans
Parent
commit
f8ddbe1707
1 fichiers modifiés avec 1 ajouts et 4 suppressions
  1. 1 4
      qdf/inc/qdf_trace.h

+ 1 - 4
qdf/inc/qdf_trace.h

@@ -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