commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
25 lines
450 B
C
25 lines
450 B
C
// 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);
|
|
}
|