summaryrefslogtreecommitdiff
path: root/src/lib/trace.c
blob: a3db40b5f7a7aecf6da3f9cccfb1138edb11c50b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-only */

#include <console/console.h>
#include <trace.h>

int volatile trace_dis = 0;

void __cyg_profile_func_enter(void *func, void *callsite)
{

	if (trace_dis)
		return;

	DISABLE_TRACE
	printk(BIOS_INFO, "~%p(%p)\n", func, callsite);
	ENABLE_TRACE
}

void __cyg_profile_func_exit(void *func, void *callsite)
{
}