Martin Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/68033 )
Change subject: arch/x86/mmap_boot.c: Clean up includes ......................................................................
arch/x86/mmap_boot.c: Clean up includes
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: I85e60c189c1ec1da5cf0e5b864447ef6f7b3f548 Reviewed-on: https://review.coreboot.org/c/coreboot/+/68033 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Martin L Roth gaumless@gmail.com --- M src/arch/x86/mmap_boot.c 1 file changed, 14 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Martin L Roth: Looks good to me, approved
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))