chore(fconf): rename last occurences of set_fw_config_info()

set_fw_config_info() interface got renamed into set_config_info() as
part of commit f441718936 ("lib/fconf:
Update 'set_fw_config_info' function"). Rename a few left-overs of the
old name.

Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
Change-Id: I119719cd7f3ba544e0c4c438e5341d35c7b5bdc2
This commit is contained in:
Sandrine Bailleux 2023-06-06 14:25:00 +02:00
parent e14b7acb49
commit 8dadc1e2a6
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() fvp_bl1_setup -> arm_bl1_setup : arm_bl1_platform_setup()
arm_bl1_setup -> arm_io_storage : plat_arm_io_setup() arm_bl1_setup -> arm_io_storage : plat_arm_io_setup()
note over arm_io_storage : register and setup fip 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 note over fconf
set fw_config information set fw_config information
(address, size, image_id) (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 * 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 * function, Below check is present to avoid re-population of
* fw_config information. * fw_config information.
* *