mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
xpl: Rename u_boot_first_phase to xpl_is_first_phase()
This is a better name for this function, so update it. Tidy up the function comment to mention VPL. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
90fb55e042
commit
713bfc58f9
4 changed files with 13 additions and 11 deletions
|
@ -504,13 +504,13 @@ int bloblist_init(void)
|
|||
* If U-Boot is not in the first phase, an existing bloblist must be
|
||||
* at a fixed address.
|
||||
*/
|
||||
bool from_addr = fixed && !u_boot_first_phase();
|
||||
bool from_addr = fixed && !xpl_is_first_phase();
|
||||
/*
|
||||
* If U-Boot is in the first phase that an arch custom routine should
|
||||
* install the bloblist passed from previous loader to this fixed
|
||||
* address.
|
||||
*/
|
||||
bool from_boot_arg = fixed && u_boot_first_phase();
|
||||
bool from_boot_arg = fixed && xpl_is_first_phase();
|
||||
|
||||
if (spl_prev_phase() == PHASE_TPL && !IS_ENABLED(CONFIG_TPL_BLOBLIST))
|
||||
from_addr = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue