From: Simon Glass <sjg@chromium.org>
Date: Fri, 12 Nov 2021 19:28:07 +0000 (-0700)
Subject: tools: Drop unused name in image-host
X-Git-Tag: v2025.01-rc5-pxa1908~1562^2~6
X-Git-Url: http://git.dujemihanovic.xyz/img/html/static/%7B%7B?a=commitdiff_plain;h=48422343c88304638d62e543060376b0e443904b;p=u-boot.git

tools: Drop unused name in image-host

The name is created but never used. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

diff --git a/tools/image-host.c b/tools/image-host.c
index a5d47a4f99..f13a944136 100644
--- a/tools/image-host.c
+++ b/tools/image-host.c
@@ -729,7 +729,7 @@ static int fit_config_add_hash(const void *fit, int image_noffset,
 			       struct strlist *node_inc, const char *conf_name,
 			       const char *sig_name, const char *iname)
 {
-	char name[200], path[200];
+	char path[200];
 	int noffset;
 	int hash_count;
 	int ret;
@@ -740,9 +740,6 @@ static int fit_config_add_hash(const void *fit, int image_noffset,
 	if (strlist_add(node_inc, path))
 		goto err_mem;
 
-	snprintf(name, sizeof(name), "%s/%s", FIT_CONFS_PATH,
-		 conf_name);
-
 	/* Add all this image's hashes */
 	hash_count = 0;
 	for (noffset = fdt_first_subnode(fit, image_noffset);