From: Simon Glass Date: Sat, 18 May 2019 17:59:51 +0000 (-0600) Subject: x86: Add a forward struct declaration in coreboot_tables.h X-Git-Tag: v2025.01-rc5-pxa1908~2888^2~17 X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=44c6a0ed6e5a37b1d4c63d2351213cf736979858;p=u-boot.git x86: Add a forward struct declaration in coreboot_tables.h This struct is not defined in this header file. Add a forward declaration so that it can be included in any context. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/include/asm/coreboot_tables.h b/arch/x86/include/asm/coreboot_tables.h index c42175b94d..2c54e24e02 100644 --- a/arch/x86/include/asm/coreboot_tables.h +++ b/arch/x86/include/asm/coreboot_tables.h @@ -8,6 +8,8 @@ #ifndef _COREBOOT_TABLES_H #define _COREBOOT_TABLES_H +struct memory_area; + struct cbuint64 { u32 lo; u32 hi;