summaryrefslogtreecommitdiffstats
path: root/include/hash.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-06-12 07:24:41 -0600
committerTom Rini <trini@ti.com>2014-06-19 11:18:55 -0400
commit04819a4ff1c93972ac46aedd3f17becbd5e0b588 (patch)
tree20e03f5786c98cf2d8d2a795d0b3245ea587bced /include/hash.h
parent52aa1cf5ec8702974a65d875fe67c317df48f1ae (diff)
downloadblackbird-obmc-uboot-04819a4ff1c93972ac46aedd3f17becbd5e0b588.tar.gz
blackbird-obmc-uboot-04819a4ff1c93972ac46aedd3f17becbd5e0b588.zip
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 'include/hash.h')
-rw-r--r--include/hash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/hash.h b/include/hash.h
index 5cb4dbfcb2..d8ec4f08e1 100644
--- a/include/hash.h
+++ b/include/hash.h
@@ -139,6 +139,7 @@ int hash_lookup_algo(const char *algo_name, struct hash_algo **algop);
* @len: Length of data that was hashed
* @output: Hash value to display
*/
-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);
#endif /* !USE_HOSTCC */
#endif
OpenPOWER on IntegriCloud