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>
15 lines
246 B
C
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;
|
|
}
|