kernel-brax3-ubuntu-touch/drivers/misc/mediatek/apusys/util/apusys_trace.h
erascape f319b992b1 kernel-5.15: Initial import brax3 UT kernel
* halium configs enabled

Signed-off-by: erascape <erascape@proton.me>
2025-09-23 15:17:10 +00:00

45 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