Alexandru Gagniuc (mr.nuke.me@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5106
-gerrit
commit ce836ceb49a2d698d6232fecb3552e8611bb4fc4 Author: Paul Menzel paulepanter@users.sourceforge.net Date: Mon Feb 3 08:36:51 2014 +0100
arch/x86/boot/tables.c: Remove unused variable assignment to `rom_table_end`
Change-Id: I098d1238cda16060c3566f242443007cdaf9bd82 Signed-off-by: Paul Menzel paulepanter@users.sourceforge.net --- src/arch/x86/boot/tables.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/arch/x86/boot/tables.c b/src/arch/x86/boot/tables.c index 712f66f..04efd6f 100644 --- a/src/arch/x86/boot/tables.c +++ b/src/arch/x86/boot/tables.c @@ -212,8 +212,7 @@ void write_tables(void) new_high_table_pointer - high_table_pointer); } else { /* The coreboot table must be in 0-4K or 960K-1M */ - rom_table_end = write_coreboot_table( - low_table_start, low_table_end, + write_coreboot_table(low_table_start, low_table_end, rom_table_start, rom_table_end); }