diff options
author | Simon Glass <sjg@chromium.org> | 2024-09-29 19:49:39 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-11 11:44:47 -0600 |
commit | 6c49fc5882baa2c496b03f8260a5b21ef48ed9c5 (patch) | |
tree | 626ee011f166a07987966f71dbc150c8cd9eff58 /common/bloblist.c | |
parent | 44a4c8e93fe393cd84c70ba1be0c47e25e6ff66c (diff) |
xpl: Rename spl_next_phase() and spl_prev_phase()
Rename this to use the xpl prefix.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/bloblist.c')
-rw-r--r-- | common/bloblist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bloblist.c b/common/bloblist.c index fb86789df42..6640ad1fd69 100644 --- a/common/bloblist.c +++ b/common/bloblist.c @@ -512,7 +512,7 @@ int bloblist_init(void) */ bool from_boot_arg = fixed && xpl_is_first_phase(); - if (spl_prev_phase() == PHASE_TPL && !IS_ENABLED(CONFIG_TPL_BLOBLIST)) + if (xpl_prev_phase() == PHASE_TPL && !IS_ENABLED(CONFIG_TPL_BLOBLIST)) from_addr = false; if (fixed) addr = IF_ENABLED_INT(CONFIG_BLOBLIST_FIXED, |