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 /lib/fdtdec.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 'lib/fdtdec.c')
-rw-r--r-- | lib/fdtdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c index ab054190221..6276b27af33 100644 --- a/lib/fdtdec.c +++ b/lib/fdtdec.c @@ -1676,7 +1676,7 @@ int fdtdec_setup(void) * not whether this phase creates one. */ if (CONFIG_IS_ENABLED(BLOBLIST) && - (spl_prev_phase() != PHASE_TPL || + (xpl_prev_phase() != PHASE_TPL || !IS_ENABLED(CONFIG_TPL_BLOBLIST))) { ret = bloblist_maybe_init(); if (!ret) { |