1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| // SPDX-License-Identifier: GPL-2.0
| /*
| * mtu3_trace.c - trace support
| *
| * Copyright (C) 2019 MediaTek Inc.
| *
| * Author: Chunfeng Yun <chunfeng.yun@mediatek.com>
| */
|
| #define CREATE_TRACE_POINTS
| #include "mtu3_debug.h"
| #include "mtu3_trace.h"
|
| void mtu3_dbg_trace(struct device *dev, const char *fmt, ...)
| {
| struct va_format vaf;
| va_list args;
|
| va_start(args, fmt);
| vaf.fmt = fmt;
| vaf.va = &args;
| trace_mtu3_log(dev, &vaf);
| va_end(args);
| }
|
|