Done with sed and God Lines. Only done for C-like code for now. Change-Id: I3fdfa159194cccf15c0284700f554d2241dad6cd Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40217 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net>
11 lines
196 B
C
11 lines
196 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#include <cpu/x86/tsc.h>
|
|
|
|
unsigned long tsc_freq_mhz(void)
|
|
{
|
|
/* CPU freq = 400 MHz */
|
|
return 400;
|
|
}
|