xpl: Rename spl_in_proper() to not_xpl()

Give this function a slightly easier name.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2024-09-29 19:49:37 -06:00 committed by Tom Rini
parent 456bdb70de
commit f86580fc70
4 changed files with 6 additions and 6 deletions

View file

@ -134,8 +134,8 @@ static inline enum xpl_phase_t xpl_phase(void)
#endif
}
/* returns true if in U-Boot proper, false if in SPL */
static inline bool spl_in_proper(void)
/* returns true if in U-Boot proper, false if in xPL */
static inline bool not_xpl(void)
{
#ifdef CONFIG_SPL_BUILD
return false;