summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2022-03-07 18:54:47 -0800
committerJulius Werner <jwerner@chromium.org>2022-03-09 17:20:48 +0000
commit797a110856a5d2021bbad0d28f4aee357d48cee1 (patch)
tree67fc076f4bc1750a62af8fcb12defa893d0641ca
parentd5f45d0a9e8f969181630ca4ba73f314f43728f0 (diff)
downloadcoreboot-797a110856a5d2021bbad0d28f4aee357d48cee1.tar.gz
coreboot-797a110856a5d2021bbad0d28f4aee357d48cee1.tar.bz2
coreboot-797a110856a5d2021bbad0d28f4aee357d48cee1.zip
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 <jwerner@chromium.org> Change-Id: I5510d05953fe8c0e2cb511f01f862b66ced154ae Reviewed-on: https://review.coreboot.org/c/coreboot/+/62656 Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/arch/x86/bootblock_normal.c6
-rw-r--r--src/include/program_loading.h5
-rw-r--r--src/lib/prog_loaders.c2
3 files changed, 6 insertions, 7 deletions
diff --git a/src/arch/x86/bootblock_normal.c b/src/arch/x86/bootblock_normal.c
index 9341ac3325fe..4bc9b013328c 100644
--- a/src/arch/x86/bootblock_normal.c
+++ b/src/arch/x86/bootblock_normal.c
@@ -12,7 +12,7 @@ static const char *get_fallback(const char *stagelist)
return ++stagelist;
}
-int legacy_romstage_select_and_load(struct prog *romstage)
+enum cb_err legacy_romstage_select_and_load(struct prog *romstage)
{
static const char *default_filenames = "normal/romstage\0fallback/romstage";
const char *boot_candidate;
@@ -24,8 +24,8 @@ int legacy_romstage_select_and_load(struct prog *romstage)
if (do_normal_boot()) {
romstage->name = boot_candidate;
- if (!cbfs_prog_stage_load(romstage))
- return 0;
+ if (cbfs_prog_stage_load(romstage) == CB_SUCCESS)
+ return CB_SUCCESS;
}
romstage->name = get_fallback(boot_candidate);
diff --git a/src/include/program_loading.h b/src/include/program_loading.h
index ba42465046b4..7ff55fc4b5e3 100644
--- a/src/include/program_loading.h
+++ b/src/include/program_loading.h
@@ -5,8 +5,7 @@
#include <bootmem.h>
#include <commonlib/bsd/cbfs_serialized.h>
#include <commonlib/region.h>
-#include <stdint.h>
-#include <stddef.h>
+#include <types.h>
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 *
diff --git a/src/lib/prog_loaders.c b/src/lib/prog_loaders.c
index a296bd6da5bd..0e175c6b708d 100644
--- a/src/lib/prog_loaders.c
+++ b/src/lib/prog_loaders.c
@@ -27,7 +27,7 @@ void run_romstage(void)
timestamp_add_now(TS_COPYROM_START);
if (ENV_X86 && CONFIG(BOOTBLOCK_NORMAL)) {
- if (legacy_romstage_select_and_load(&romstage))
+ if (legacy_romstage_select_and_load(&romstage) != CB_SUCCESS)
goto fail;
} else {
if (cbfs_prog_stage_load(&romstage))