summaryrefslogtreecommitdiffstats
path: root/src/mainboard/emulation/qemu-armv7/timer.c
blob: aecaae89aafd22b8144c78a54439e8996730c962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

void udelay(unsigned int n);
void udelay(unsigned int n)
{
	/* TODO provide delay here. */
}

int init_timer(void);
int init_timer(void)
{
	return 0;
}