Files
system76-coreboot/src/mainboard/emulation/qemu-armv7/timer.c
Angel Pons 585495e887 mainboard/emulation: Use SPDX for GPL-2.0-only files
Done with sed and God Lines. Only done for C-like code for now.

Change-Id: I68d2a8ac6f201f3c1131252b2b53b2b17ece1db6
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40073
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
2020-04-04 15:42:47 +00:00

15 lines
246 B
C

/* 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;
}