Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68041 )
Change subject: cpu/intel/common/fsb.c: Sorte includes and add <stdint.h> ......................................................................
cpu/intel/common/fsb.c: Sorte includes and add <stdint.h>
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: I9b85836ac21da5b885a97f05e3973fb23a052fd5 --- M src/cpu/intel/common/fsb.c 1 file changed, 15 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/41/68041/1
diff --git a/src/cpu/intel/common/fsb.c b/src/cpu/intel/common/fsb.c index 350e8c6..92f88cd 100644 --- a/src/cpu/intel/common/fsb.c +++ b/src/cpu/intel/common/fsb.c @@ -1,13 +1,14 @@ /* SPDX-License-Identifier: GPL-2.0-only */
#include <arch/cpu.h> +#include <commonlib/helpers.h> +#include <console/console.h> +#include <cpu/intel/fsb.h> +#include <cpu/intel/speedstep.h> #include <cpu/x86/msr.h> #include <cpu/x86/tsc.h> -#include <cpu/intel/speedstep.h> -#include <cpu/intel/fsb.h> -#include <console/console.h> -#include <commonlib/helpers.h> #include <delay.h> +#include <stdint.h>
static u32 timer_fsb; static u32 timer_tsc;