Browse Source

qcacmn: Move qdf_trace API declarations to qdf_trace header file

The qdf_trace_msg and qdf_vtrace_msg related API's declaration
are in qdf_types.h but the definition is in qdf_trace.c

Move the declaration to i_qdf_trace.h

Change-Id: I098540347446078bc6d43fd2377d197b2575da1a
CRs-Fixed: 2497779
Vivek 5 years ago
parent
commit
63891b3eb2
2 changed files with 33 additions and 39 deletions
  1. 0 39
      qdf/inc/qdf_types.h
  2. 33 0
      qdf/linux/src/i_qdf_trace.h

+ 0 - 39
qdf/inc/qdf_types.h

@@ -24,12 +24,6 @@
 #if !defined(__QDF_TYPES_H)
 #define __QDF_TYPES_H
 
-#ifndef CONFIG_MCL
-#if !defined(__printf)
-#define __printf(a, b)
-#endif
-#endif
-
 #define qdf_must_check __qdf_must_check
 
 /* Include Files */
@@ -614,39 +608,6 @@ enum QDF_GLOBAL_MODE {
 
 #define  QDF_IS_EPPING_ENABLED(mode) (mode == QDF_GLOBAL_EPPING_MODE)
 
-/**
- * qdf_trace_msg()- logging API
- * @module: Module identifier. A member of the QDF_MODULE_ID enumeration that
- *	    identifies the module issuing the trace message.
- * @level: Trace level. A member of the QDF_TRACE_LEVEL enumeration indicating
- *	   the severity of the condition causing the trace message to be issued.
- *	   More severe conditions are more likely to be logged.
- * @str_format: Format string. The message to be logged. This format string
- *	       contains printf-like replacement parameters, which follow this
- *	       parameter in the variable argument list.
- *
- * Users wishing to add tracing information to their code should use
- * QDF_TRACE.  QDF_TRACE() will compile into a call to qdf_trace_msg() when
- * tracing is enabled.
- *
- * Return: nothing
- *
- * implemented in qdf_trace.c
- */
-void __printf(3, 4) qdf_trace_msg(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
-				  const char *str_format, ...);
-/**
- * qdf_vtrace_msg() - the va_list version of qdf_trace_msg
- * @module: the calling module's Id
- * @level: the logging level to log using
- * @str_format: the log format string
- * @val: the va_list containing the values to format according to str_format
- *
- * Return: None
- */
-void qdf_vtrace_msg(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
-		    const char *str_format, va_list val);
-
 #ifdef QDF_TRACE_PRINT_ENABLE
 #define qdf_print(args...) QDF_TRACE_INFO(QDF_MODULE_ID_ANY, ## args)
 #define qdf_alert(args...) QDF_TRACE_FATAL(QDF_MODULE_ID_ANY, ## args)

+ 33 - 0
qdf/linux/src/i_qdf_trace.h

@@ -224,6 +224,39 @@ static inline void __qdf_trace_noop(QDF_MODULE_ID module, char *format, ...) { }
 		} \
 	} while (0)
 #endif /* WLAN_WARN_ON_ASSERT */
+/**
+ * qdf_trace_msg()- logging API
+ * @module: Module identifier. A member of the QDF_MODULE_ID enumeration that
+ *	    identifies the module issuing the trace message.
+ * @level: Trace level. A member of the QDF_TRACE_LEVEL enumeration indicating
+ *	   the severity of the condition causing the trace message to be issued.
+ *	   More severe conditions are more likely to be logged.
+ * @str_format: Format string. The message to be logged. This format string
+ *	       contains printf-like replacement parameters, which follow this
+ *	       parameter in the variable argument list.
+ *
+ * Users wishing to add tracing information to their code should use
+ * QDF_TRACE.  QDF_TRACE() will compile into a call to qdf_trace_msg() when
+ * tracing is enabled.
+ *
+ * Return: nothing
+ *
+ * implemented in qdf_trace.c
+ */
+void __printf(3, 4) qdf_trace_msg(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
+				  const char *str_format, ...);
+
+/**
+ * qdf_vtrace_msg() - the va_list version of qdf_trace_msg
+ * @module: the calling module's Id
+ * @level: the logging level to log using
+ * @str_format: the log format string
+ * @val: the va_list containing the values to format according to str_format
+ *
+ * Return: None
+ */
+void qdf_vtrace_msg(QDF_MODULE_ID module, QDF_TRACE_LEVEL level,
+		    const char *str_format, va_list val);
 
 #else