diff options
author | Patrick Georgi <pgeorgi@google.com> | 2015-03-30 14:06:33 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-03-30 20:41:23 +0200 |
commit | 6f723c2692d72083011e45d8c6db924a49ad705e (patch) | |
tree | 51dbeb3722d41d9defffd161694b689a07cdcd5b /src | |
parent | 146d05da93c3cfdb97023ead2cb673a8d5de6b4f (diff) |
mips: fix write_table
This replicates commit 3f7ad7b216b4021c7cb93201a94b0fae46f5e19e and
commit 823edda98e6512d3f455b61549efea6fa68ee2b0 for mips.
Change-Id: Id97e1fefa20cfa3bcb2cf0336b5a4ff7d9fe813b
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: http://review.coreboot.org/9166
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/mips/tables.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/arch/mips/tables.c b/src/arch/mips/tables.c index 858fa799a3..9bd72d7a64 100644 --- a/src/arch/mips/tables.c +++ b/src/arch/mips/tables.c @@ -30,11 +30,7 @@ #define MAX_COREBOOT_TABLE_SIZE (8 * 1024) -void cbmem_arch_init(void) -{ -} - -struct lb_memory *write_tables(void) +void write_tables(void) { unsigned long table_pointer, new_table_pointer; @@ -44,7 +40,7 @@ struct lb_memory *write_tables(void) MAX_COREBOOT_TABLE_SIZE); if (!table_pointer) { printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n"); - return NULL; + return; } new_table_pointer = write_coreboot_table(0UL, 0UL, table_pointer, @@ -62,6 +58,4 @@ struct lb_memory *write_tables(void) /* Print CBMEM sections */ cbmem_list(); - - return get_lb_mem(); } |