aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/arm/tables.c3
-rw-r--r--src/arch/arm64/tables.c3
-rw-r--r--src/arch/mips/tables.c3
-rw-r--r--src/arch/power8/tables.c3
-rw-r--r--src/arch/riscv/tables.c3
-rw-r--r--src/arch/x86/tables.c3
-rw-r--r--src/lib/coreboot_table.c3
7 files changed, 3 insertions, 18 deletions
diff --git a/src/arch/arm/tables.c b/src/arch/arm/tables.c
index 17a3fd1647..eb08e6e842 100644
--- a/src/arch/arm/tables.c
+++ b/src/arch/arm/tables.c
@@ -50,9 +50,6 @@ void write_tables(void)
new_table_pointer - table_pointer);
post_code(0x9e);
-
- /* Print CBMEM sections */
- cbmem_list();
}
void lb_arch_add_records(struct lb_header *header)
diff --git a/src/arch/arm64/tables.c b/src/arch/arm64/tables.c
index 17a3fd1647..eb08e6e842 100644
--- a/src/arch/arm64/tables.c
+++ b/src/arch/arm64/tables.c
@@ -50,9 +50,6 @@ void write_tables(void)
new_table_pointer - table_pointer);
post_code(0x9e);
-
- /* Print CBMEM sections */
- cbmem_list();
}
void lb_arch_add_records(struct lb_header *header)
diff --git a/src/arch/mips/tables.c b/src/arch/mips/tables.c
index 2083442f29..a3d9939707 100644
--- a/src/arch/mips/tables.c
+++ b/src/arch/mips/tables.c
@@ -51,9 +51,6 @@ void write_tables(void)
new_table_pointer - table_pointer);
post_code(0x9e);
-
- /* Print CBMEM sections */
- cbmem_list();
}
void lb_arch_add_records(struct lb_header *header)
diff --git a/src/arch/power8/tables.c b/src/arch/power8/tables.c
index 0a885053a0..02d1c163e1 100644
--- a/src/arch/power8/tables.c
+++ b/src/arch/power8/tables.c
@@ -51,9 +51,6 @@ void write_tables(void)
new_table_pointer - table_pointer);
post_code(0x9e);
-
- /* Print CBMEM sections */
- cbmem_list();
}
void lb_arch_add_records(struct lb_header *header)
diff --git a/src/arch/riscv/tables.c b/src/arch/riscv/tables.c
index 17a3fd1647..eb08e6e842 100644
--- a/src/arch/riscv/tables.c
+++ b/src/arch/riscv/tables.c
@@ -50,9 +50,6 @@ void write_tables(void)
new_table_pointer - table_pointer);
post_code(0x9e);
-
- /* Print CBMEM sections */
- cbmem_list();
}
void lb_arch_add_records(struct lb_header *header)
diff --git a/src/arch/x86/tables.c b/src/arch/x86/tables.c
index 8cfd6555a0..5780cd1dfe 100644
--- a/src/arch/x86/tables.c
+++ b/src/arch/x86/tables.c
@@ -212,7 +212,4 @@ void write_tables(void)
write_coreboot_table(low_table_start, low_table_end,
rom_table_start, rom_table_end);
}
-
- /* Print CBMEM sections */
- cbmem_list();
}
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c
index eeed65e744..18e8b342b6 100644
--- a/src/lib/coreboot_table.c
+++ b/src/lib/coreboot_table.c
@@ -572,6 +572,9 @@ unsigned long write_coreboot_table(
/* Add all cbmem entries into the coreboot tables. */
cbmem_add_records_to_cbtable(head);
+ /* Print CBMEM sections */
+ cbmem_list();
+
/* Remember where my valid memory ranges are */
return lb_table_fini(head);
}