From a6e9051bc6843bb8f42df9c29cd254914ece93b4 Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Thu, 21 Apr 2016 14:06:17 -0500 Subject: lib/coreboot_table: use the architecture dependent table size Utilize the architecture dependent coreboot table size value from Change-Id: I80d51a5caf7c455b0b47c380e1d79cf522502a4c Signed-off-by: Aaron Durbin Reviewed-on: https://review.coreboot.org/14455 Reviewed-by: Stefan Reinauer Tested-by: build bot (Jenkins) --- src/lib/coreboot_table.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c index 58c6f48cbf..4dbac1930d 100644 --- a/src/lib/coreboot_table.c +++ b/src/lib/coreboot_table.c @@ -15,6 +15,7 @@ * GNU General Public License for more details. */ +#include #include #include #include @@ -560,7 +561,7 @@ void write_tables(void) uintptr_t cbtable_start; uintptr_t cbtable_end; size_t cbtable_size; - const size_t max_table_size = CONFIG_COREBOOT_TABLE_SIZE; + const size_t max_table_size = COREBOOT_TABLE_SIZE; cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size); -- cgit v1.2.3