Merge "chore(fconf): rename last occurences of set_fw_config_info()" into integration

This commit is contained in:
Sandrine Bailleux 2023-06-06 17:49:06 +02:00 committed by TrustedFirmware Code Review
commit 201e3c78a7
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ bl1_main -> fvp_bl1_setup : bl1_platform_setup()
fvp_bl1_setup -> arm_bl1_setup : arm_bl1_platform_setup()
arm_bl1_setup -> arm_io_storage : plat_arm_io_setup()
note over arm_io_storage : register and setup fip
arm_bl1_setup -> fconf : set_fw_config_info(fw_config_base, max_size)
arm_bl1_setup -> fconf : set_config_info(fw_config_base, max_size, FW_CONFIG_ID)
note over fconf
set fw_config information
(address, size, image_id)

View file

@ -83,7 +83,7 @@ int fconf_populate_dtb_registry(uintptr_t config)
/*
* In case of BL1, fw_config dtb information is already
* populated in global dtb_infos array by 'set_fw_config_info'
* populated in global dtb_infos array by 'set_config_info'
* function, Below check is present to avoid re-population of
* fw_config information.
*