diff options
| author | Simon Glass <sjg@chromium.org> | 2024-09-29 19:49:35 -0600 | 
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2024-10-11 11:44:47 -0600 | 
| commit | 41ea75aa00079ff8368fca53267671cee6289415 (patch) | |
| tree | de4023dc859ce6ec220db2e82ac0d2fd63fe9cb2 /common | |
| parent | 713bfc58f948e46e0e01ff8b50ef9f30f6f8317c (diff) | |
xpl: Rename spl_phase to xpl_phase_t
This name fits better with the new naming scheme, so update it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
| -rw-r--r-- | common/spl/spl.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/spl/spl.c b/common/spl/spl.c index 9c3bba48251..9ed91929ee1 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -441,7 +441,7 @@ static inline int write_spl_handoff(void) { return 0; }   */  static enum bootstage_id get_bootstage_id(bool start)  { -	enum u_boot_phase phase = spl_phase(); +	enum xpl_phase_t phase = spl_phase();  	if (IS_ENABLED(CONFIG_TPL_BUILD) && phase == PHASE_TPL)  		return start ? BOOTSTAGE_ID_START_TPL : BOOTSTAGE_ID_END_TPL; | 
