aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/picasso/psp_verstage/timestamp.c
blob: b3b8f75f7e8ffd32e17b614596eccc79b8614ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */

#include <timestamp.h>

/* Stubs */
void timestamp_add_now(enum timestamp_id id)
{
}

void timestamp_add(enum timestamp_id id, uint64_t ts)
{
}

uint64_t timestamp_get(void)
{
	return 0;
}