blob: 28ca0e96b22ee92e19041aaf125e21bc9f87d097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include "dmtimer.h"
void dmtimer_start(int num)
{
}
uint64_t dmtimer_raw_value(int num)
{
return 0;
}
|