aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2012-04-27 00:34:54 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-04-27 20:16:47 +0200
commit0e672b52d46f05aec066e7625c097e69baa62a23 (patch)
treef1fa6d4633baf6e1eb987fddd59595a5dff3ffeb /src
parent16401b8f6de12b00831746bc48e72010796180b8 (diff)
coreboot_table.c: Add missing include files
If compiling coreboot with ChromeOS support, two more include files are required. Change-Id: I7e042e250e4a89e7dd4bab58443824d503c3f709 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/931 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/arch/x86/boot/coreboot_table.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/boot/coreboot_table.c b/src/arch/x86/boot/coreboot_table.c
index 219de7adae..9ceca45f76 100644
--- a/src/arch/x86/boot/coreboot_table.c
+++ b/src/arch/x86/boot/coreboot_table.c
@@ -34,6 +34,10 @@
#if CONFIG_USE_OPTION_TABLE
#include <option_table.h>
#endif
+#if CONFIG_CHROMEOS
+#include <arch/acpi.h>
+#include <vendorcode/google/chromeos/gnvs.h>
+#endif
static struct lb_header *lb_table_init(unsigned long addr)
{