From 6c49fc5882baa2c496b03f8260a5b21ef48ed9c5 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 29 Sep 2024 19:49:39 -0600 Subject: xpl: Rename spl_next_phase() and spl_prev_phase() Rename this to use the xpl prefix. Signed-off-by: Simon Glass --- arch/sandbox/cpu/spl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/sandbox') diff --git a/arch/sandbox/cpu/spl.c b/arch/sandbox/cpu/spl.c index 7497d90fb89..71d785f4c3e 100644 --- a/arch/sandbox/cpu/spl.c +++ b/arch/sandbox/cpu/spl.c @@ -28,7 +28,7 @@ int sandbox_find_next_phase(char *fname, int maxlen, bool use_img) int ret; cur_prefix = spl_phase_prefix(xpl_phase()); - next_prefix = spl_phase_prefix(spl_next_phase()); + next_prefix = spl_phase_prefix(xpl_next_phase()); ret = os_find_u_boot(fname, maxlen, use_img, cur_prefix, next_prefix); if (ret) return log_msg_ret("find", ret); @@ -101,7 +101,7 @@ static int load_from_image(struct spl_image_info *spl_image, if (!IS_ENABLED(CONFIG_SANDBOX_VPL)) return -ENOENT; - next_phase = spl_next_phase(); + next_phase = xpl_next_phase(); pos = spl_get_image_pos(); size = spl_get_image_size(); if (pos == BINMAN_SYM_MISSING || size == BINMAN_SYM_MISSING) { -- cgit v1.2.3