From f0b28d8d8964fd03706269818d14c58edfdef068 Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Sun, 2 Oct 2022 10:46:31 +0200 Subject: [PATCH] arch/x86/mmap_boot.c: Clean up includes Signed-off-by: Elyes Haouas Change-Id: I85e60c189c1ec1da5cf0e5b864447ef6f7b3f548 Reviewed-on: https://review.coreboot.org/c/coreboot/+/68033 Tested-by: build bot (Jenkins) Reviewed-by: Martin L Roth --- src/arch/x86/mmap_boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/x86/mmap_boot.c b/src/arch/x86/mmap_boot.c index f0ccc86fbe..0e9812f3c7 100644 --- a/src/arch/x86/mmap_boot.c +++ b/src/arch/x86/mmap_boot.c @@ -1,8 +1,8 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include -#include #include +#include /* The ROM is memory mapped just below 4GiB. Form a pointer for the base. */ #define rom_base ((void *)(uintptr_t)(0x100000000ULL-CONFIG_ROM_SIZE))