diff options
author | Duncan Laurie <dlaurie@chromium.org> | 2011-08-15 16:35:10 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-03-09 20:39:43 +0100 |
commit | 66ecdc52e1ed09b116fd47a59e0aa8905bffef09 (patch) | |
tree | 4d03b5c41d7943162e56b2ade8d3645e7bc6e59c /src | |
parent | 05239898f2e7b1d35a2f4882c8c3f2c1a783f592 (diff) | |
download | coreboot-66ecdc52e1ed09b116fd47a59e0aa8905bffef09.tar.xz |
Fix compilation when USE_OPTION_TABLE is not defined.
Change-Id: Id622e4e96b6c8e87b00a96c324a0b4dbfac3391d
Signed-off-by: Duncan Laurie <dlaurie@google.com>
Reviewed-on: http://review.coreboot.org/702
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/boot/coreboot_table.c b/src/arch/x86/boot/coreboot_table.c index a7e8bbc412..b0dcc9e65a 100644 --- a/src/arch/x86/boot/coreboot_table.c +++ b/src/arch/x86/boot/coreboot_table.c @@ -29,9 +29,9 @@ #include <version.h> #include <device/device.h> #include <stdlib.h> +#include <cbfs.h> #if CONFIG_USE_OPTION_TABLE #include <option_table.h> -#include <cbfs.h> #endif static struct lb_header *lb_table_init(unsigned long addr) |