mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
tools: Drop unused name in image-host
The name is created but never used. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
70e6bcc43f
commit
48422343c8
1 changed files with 1 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue