From 44c6a0ed6e5a37b1d4c63d2351213cf736979858 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 18 May 2019 11:59:51 -0600 Subject: [PATCH] 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 --- arch/x86/include/asm/coreboot_tables.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86/include/asm/coreboot_tables.h b/arch/x86/include/asm/coreboot_tables.h index c42175b..2c54e24 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; -- 2.7.4