mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
image: fit: Fix parameter name for hash algorithm
Fix inconsistent function parameter name of the hash algorithm.
Signed-off-by: Chia-Wei Wang <chiawei_wang@aspeedtech.com>
Fixes: 92055e138f
("image: Drop if/elseif hash selection in calculate_hash()")
Reviewed-by: Joel Stanley <joel@jms.id.au>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
faf5d4d53d
commit
deea089077
1 changed files with 2 additions and 2 deletions
|
@ -1202,7 +1202,7 @@ int fit_set_timestamp(void *fit, int noffset, time_t timestamp)
|
|||
* calculate_hash - calculate and return hash for provided input data
|
||||
* @data: pointer to the input data
|
||||
* @data_len: data length
|
||||
* @algo: requested hash algorithm
|
||||
* @name: requested hash algorithm name
|
||||
* @value: pointer to the char, will hold hash value data (caller must
|
||||
* allocate enough free space)
|
||||
* value_len: length of the calculated hash
|
||||
|
@ -1230,7 +1230,7 @@ int calculate_hash(const void *data, int data_len, const char *name,
|
|||
return -1;
|
||||
}
|
||||
|
||||
hash_algo = hash_algo_lookup_by_name(algo);
|
||||
hash_algo = hash_algo_lookup_by_name(name);
|
||||
if (hash_algo == HASH_ALGO_INVALID) {
|
||||
debug("Unsupported hash algorithm\n");
|
||||
return -1;
|
||||
|
|
Loading…
Reference in a new issue