diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-10-07 10:06:25 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-10-26 16:27:41 +0000 |
commit | deb5645644edf8b8594f89acf4d33544a8ea6f44 (patch) | |
tree | d3a0f08178b2517360eaef0cf2cfcb48c0ff79a4 /src/cpu/intel/car/bootblock.c | |
parent | 6a9ae29c05f9462dfdeaba931bbbd5fca6b97e1b (diff) |
cpu/intel: Clean up includes
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: Ie760711916c49d275ca49d94b9597fd24b5e7628
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68203
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Diffstat (limited to 'src/cpu/intel/car/bootblock.c')
-rw-r--r-- | src/cpu/intel/car/bootblock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/intel/car/bootblock.c b/src/cpu/intel/car/bootblock.c index dd9a77216f..c53379b69f 100644 --- a/src/cpu/intel/car/bootblock.c +++ b/src/cpu/intel/car/bootblock.c @@ -1,8 +1,9 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <bootblock_common.h> #include <arch/bootblock.h> +#include <bootblock_common.h> #include <cpu/x86/bist.h> +#include <stdint.h> static uint32_t saved_bist; |