Martin Roth has submitted this change. ( 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/68041 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Martin L Roth gaumless@gmail.com --- M src/cpu/intel/common/fsb.c 1 file changed, 18 insertions(+), 4 deletions(-)
Approvals: build bot (Jenkins): Verified Martin L Roth: Looks good to me, approved
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;