fit: Remove unused len parameter from fit_get_name()

Remove the unused third parameter (len) from fit_get_name(). All uses of
this function pass NULL for this parameter.

Co-developed-by: Claude <noreply@anthropic.com>
Signed-off-by: Simon Glass <simon.glass@canonical.com>
This commit is contained in:
Simon Glass
2025-11-17 16:59:50 -07:00
parent 62a456012f
commit cca21f0d2f
10 changed files with 56 additions and 57 deletions

View File

@@ -613,7 +613,7 @@ static int first_loading_rbf_to_buffer(struct udevice *dev,
images_noffset = fit_conf_get_prop_node_index(buffer_p,
confs_noffset,
FIT_FPGA_PROP, i);
uname = fit_get_name(buffer_p, images_noffset, NULL);
uname = fit_get_name(buffer_p, images_noffset);
if (uname) {
debug("FPGA: %s\n", uname);