From 797a110856a5d2021bbad0d28f4aee357d48cee1 Mon Sep 17 00:00:00 2001 From: Julius Werner Date: Mon, 7 Mar 2022 18:54:47 -0800 Subject: prog_loader: Change legacy_romstage_select_and_load() to return cb_err This is passing through a cb_err from cbfs_prog_stage_load(), so it should be declared to return that as well. Signed-off-by: Julius Werner Change-Id: I5510d05953fe8c0e2cb511f01f862b66ced154ae Reviewed-on: https://review.coreboot.org/c/coreboot/+/62656 Reviewed-by: Yu-Ping Wu Tested-by: build bot (Jenkins) --- src/include/program_loading.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/include/program_loading.h') diff --git a/src/include/program_loading.h b/src/include/program_loading.h index ba42465046..7ff55fc4b5 100644 --- a/src/include/program_loading.h +++ b/src/include/program_loading.h @@ -5,8 +5,7 @@ #include #include #include -#include -#include +#include enum { /* Last segment of program. Can be used to take different actions for @@ -139,7 +138,7 @@ void platform_prog_run(struct prog *prog); void run_romstage(void); /* Runtime selector for CBFS_PREFIX of romstage. */ -int legacy_romstage_select_and_load(struct prog *romstage); +enum cb_err legacy_romstage_select_and_load(struct prog *romstage); /************************ * RAMSTAGE LOADING * -- cgit v1.2.3