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>
Reviewed-on: http://review.coreboot.org/5106
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
Paul Menzel 2014-02-03 08:36:51 +01:00 committed by Alexandru Gagniuc
parent 23804fc6e5
commit ddea94259a
1 changed files with 1 additions and 2 deletions

View File

@ -212,8 +212,7 @@ void write_tables(void)
new_high_table_pointer - high_table_pointer); new_high_table_pointer - high_table_pointer);
} else { } else {
/* The coreboot table must be in 0-4K or 960K-1M */ /* The coreboot table must be in 0-4K or 960K-1M */
rom_table_end = write_coreboot_table( write_coreboot_table(low_table_start, low_table_end,
low_table_start, low_table_end,
rom_table_start, rom_table_end); rom_table_start, rom_table_end);
} }