aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/emulation/qemu-armv7/timer.c
blob: 2da88e70247a5a355bba7eaa62196636555c9f87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */

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

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