forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrace.h
More file actions
27 lines (19 loc) · 634 Bytes
/
trace.h
File metadata and controls
27 lines (19 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright(c) 2022 MediaTek. All rights reserved.
*
* Author: Allen-KH Cheng <allen-kh.cheng@mediatek.com>
* Tinghan Shen <tinghan.shen@mediatek.com>
*/
#ifdef __SOF_TRACE_TRACE_H__
#ifndef __PLATFORM_TRACE_TRACE_H__
#define __PLATFORM_TRACE_TRACE_H__
#include <sof/lib/mailbox.h>
#include <sof/lib/memory.h>
#include <sof/lib/io.h>
#include <platform/drivers/mt_reg_base.h>
#define platform_trace_point(__x)
#endif /* __PLATFORM_TRACE_TRACE_H__ */
#else
#error "This file shouldn't be included from outside of sof/trace/trace.h"
#endif /* __SOF_TRACE_TRACE_H__ */