From 8dadc1e2a63e2029d5fbc2fdf633065d9f7d8d25 Mon Sep 17 00:00:00 2001 From: Sandrine Bailleux Date: Tue, 6 Jun 2023 14:25:00 +0200 Subject: [PATCH] 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 f441718936a6b72583d03eebf8057bbf29446989 ("lib/fconf: Update 'set_fw_config_info' function"). Rename a few left-overs of the old name. Signed-off-by: Sandrine Bailleux Change-Id: I119719cd7f3ba544e0c4c438e5341d35c7b5bdc2 --- docs/resources/diagrams/plantuml/fconf_bl1_load_config.puml | 2 +- lib/fconf/fconf_dyn_cfg_getter.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/diagrams/plantuml/fconf_bl1_load_config.puml b/docs/resources/diagrams/plantuml/fconf_bl1_load_config.puml index e513ed4c3..9b693c8ba 100644 --- a/docs/resources/diagrams/plantuml/fconf_bl1_load_config.puml +++ b/docs/resources/diagrams/plantuml/fconf_bl1_load_config.puml @@ -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) diff --git a/lib/fconf/fconf_dyn_cfg_getter.c b/lib/fconf/fconf_dyn_cfg_getter.c index 13081b06c..58956d622 100644 --- a/lib/fconf/fconf_dyn_cfg_getter.c +++ b/lib/fconf/fconf_dyn_cfg_getter.c @@ -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. *