diff options
| author | Simon Glass <[email protected]> | 2024-09-29 19:49:37 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-11 11:44:47 -0600 |
| commit | f86580fc70a402add9aad1e003de78b5d7414736 (patch) | |
| tree | 70a7371996c0977102ef0e591ea76c6839b3b349 /include | |
| parent | 456bdb70def1fe371f964e82158a53f6baf1d3a4 (diff) | |
xpl: Rename spl_in_proper() to not_xpl()
Give this function a slightly easier name.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/spl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/spl.h b/include/spl.h index bf011139548..948486164d9 100644 --- a/include/spl.h +++ b/include/spl.h @@ -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; |
