From a8fa25138b6a1fd08a8e95ab5ecb2ed4e21ee898 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 18 Jul 2018 14:35:01 -0700 Subject: write_tables: return a pointer to the table The write_tables function was void. It is a bit more useful for loading payloads from the romstage if it returns a pointer to the table it creates. Change-Id: I6eeaf3e16bcbaf1e7ec3eada8026c466d2fb6f5a Signed-off-by: Ronald G. Minnich Reviewed-on: https://review.coreboot.org/27537 Reviewed-by: Philipp Deppenwiese Tested-by: build bot (Jenkins) --- src/include/boot/tables.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include') diff --git a/src/include/boot/tables.h b/src/include/boot/tables.h index c2d7b48841..9e82e3f6c8 100644 --- a/src/include/boot/tables.h +++ b/src/include/boot/tables.h @@ -6,8 +6,9 @@ /* * Write architecture specific tables as well as the common * coreboot table. + * Returns a pointer to the table or NULL on error. */ -void write_tables(void); +void *write_tables(void); /* * Allow per-architecture table writes called from write_tables(). The -- cgit v1.2.3