aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2016-04-19 15:33:08 -0500
committerAaron Durbin <adurbin@chromium.org>2016-04-21 20:42:20 +0200
commit60eb2c2c40193c457268aaa835002785b357df96 (patch)
tree0eeb5e257013f19399bc98cce987b47c348ddf09 /src/lib
parenta0546da57a79499662f9f82590d1ef6fa18ed893 (diff)
arch: only print cbmem entries in one place
Each arch was calling cbmem_list() in their own write_tables() function. Consolidate that call and place it in common code in write_coreboot_table(). Change-Id: If0d4c84e0f8634e5cef6996b2be4a86cc83c95a9 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/14430 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/coreboot_table.c3
1 files changed, 3 insertions, 0 deletions
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);
}