aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2014-02-03 08:36:51 +0100
committerAlexandru Gagniuc <mr.nuke.me@gmail.com>2015-02-14 21:13:37 +0100
commitddea94259a99fcc3e65788e3a570243e9271937f (patch)
tree9d8b7a286c3e1a82ff520b4877cd9a2dc43f9b6a /src/arch
parent23804fc6e5a1ae4126a81899f1007f2ead4b7bf8 (diff)
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>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/boot/tables.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/x86/boot/tables.c b/src/arch/x86/boot/tables.c
index 712f66f3e8..04efd6ffe9 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);
}