mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2025-09-26 19:04:54 +00:00
46 lines
718 B
C
46 lines
718 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2020 MediaTek Inc.
|
|
*/
|
|
|
|
#if IS_ENABLED(CONFIG_FTRACE)
|
|
|
|
#ifdef TRACE_LEN
|
|
#undef TRACE_LEN
|
|
#endif
|
|
|
|
#define TRACE_LEN 256
|
|
|
|
#ifdef TRACE_PUT
|
|
#undef TRACE_PUT
|
|
#endif
|
|
|
|
#define TRACE_PUTS(p) \
|
|
do { \
|
|
trace_puts(p);; \
|
|
} while (0)
|
|
|
|
void trace_tag_begin(const char *format, ...);
|
|
void trace_tag_end(void);
|
|
void trace_tag_customer(const char *fmt, ...);
|
|
void trace_async_tag(bool isBegin, const char *format, ...);
|
|
|
|
#else
|
|
static inline void trace_tag_begin(const char *format, ...)
|
|
{
|
|
}
|
|
|
|
static inline void trace_tag_end(void)
|
|
{
|
|
}
|
|
|
|
static inline void trace_tag_customer(const char *fmt, ...)
|
|
{
|
|
}
|
|
|
|
static inline void trace_async_tag(const char *fmt, ...)
|
|
{
|
|
}
|
|
#endif
|
|
|