include: Use CONFIG_XPL_BUILD instead of CONFIG_SPL_BUILD

Use the new symbol to refer to any 'SPL' build, including TPL and VPL

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2024-09-29 19:49:49 -06:00
committed by Tom Rini
parent 371dc068bb
commit f38956a687
79 changed files with 125 additions and 125 deletions

View File

@@ -41,7 +41,7 @@ struct vbe_handoff {
*/
static inline enum vbe_phase_t vbe_phase(void)
{
if (IS_ENABLED(CONFIG_SPL_BUILD))
if (IS_ENABLED(CONFIG_XPL_BUILD))
return VBE_PHASE_FIRMWARE;
return VBE_PHASE_OS;