Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68033 )
Change subject: arch/x86/mmap_boot.c: Cleanup includes ......................................................................
arch/x86/mmap_boot.c: Cleanup includes
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: I85e60c189c1ec1da5cf0e5b864447ef6f7b3f548 --- M src/arch/x86/mmap_boot.c 1 file changed, 11 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/33/68033/1
diff --git a/src/arch/x86/mmap_boot.c b/src/arch/x86/mmap_boot.c index f0ccc86..0e9812f 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 <boot_device.h> -#include <endian.h> #include <spi_flash.h> +#include <stdint.h>
/* The ROM is memory mapped just below 4GiB. Form a pointer for the base. */ #define rom_base ((void *)(uintptr_t)(0x100000000ULL-CONFIG_ROM_SIZE))