diff options
author | Simon Glass <sjg@chromium.org> | 2014-06-12 07:24:41 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-19 11:18:55 -0400 |
commit | 04819a4ff1c93972ac46aedd3f17becbd5e0b588 (patch) | |
tree | 20e03f5786c98cf2d8d2a795d0b3245ea587bced /common/hash.c | |
parent | 52aa1cf5ec8702974a65d875fe67c317df48f1ae (diff) | |
download | u-boot-imx-04819a4ff1c93972ac46aedd3f17becbd5e0b588.zip u-boot-imx-04819a4ff1c93972ac46aedd3f17becbd5e0b588.tar.gz u-boot-imx-04819a4ff1c93972ac46aedd3f17becbd5e0b588.tar.bz2 |
hash: Use uint8_t in preference to u8
This type is more readily available on the host compiler, so use it instead.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/hash.c')
-rw-r--r-- | common/hash.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/common/hash.c b/common/hash.c index 237bd04..3d95378 100644 --- a/common/hash.c +++ b/common/hash.c @@ -187,7 +187,7 @@ static struct hash_algo hash_algo[] = { * @allow_env_vars: non-zero to permit storing the result to an * variable environment */ -static void store_result(struct hash_algo *algo, const u8 *sum, +static void store_result(struct hash_algo *algo, const uint8_t *sum, const char *dest, int allow_env_vars) { unsigned int i; @@ -243,8 +243,8 @@ static void store_result(struct hash_algo *algo, const u8 *sum, * address, and the * prefix is not expected. * @return 0 if ok, non-zero on error */ -static int parse_verify_sum(struct hash_algo *algo, char *verify_str, u8 *vsum, - int allow_env_vars) +static int parse_verify_sum(struct hash_algo *algo, char *verify_str, + uint8_t *vsum, int allow_env_vars) { int env_var = 0; @@ -311,7 +311,7 @@ int hash_lookup_algo(const char *algo_name, struct hash_algo **algop) return -EPROTONOSUPPORT; } -void hash_show(struct hash_algo *algo, ulong addr, ulong len, u8 *output) +void hash_show(struct hash_algo *algo, ulong addr, ulong len, uint8_t *output) { int i; @@ -355,8 +355,8 @@ int hash_command(const char *algo_name, int flags, cmd_tbl_t *cmdtp, int flag, if (multi_hash()) { struct hash_algo *algo; - u8 output[HASH_MAX_DIGEST_SIZE]; - u8 vsum[HASH_MAX_DIGEST_SIZE]; + uint8_t output[HASH_MAX_DIGEST_SIZE]; + uint8_t vsum[HASH_MAX_DIGEST_SIZE]; void *buf; if (hash_lookup_algo(algo_name, &algo)) { |