aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarald Seiler <hws@denx.de>2020-06-15 09:47:04 +0200
committerTom Rini <trini@konsulko.com>2020-06-16 11:36:30 -0400
commit7a81989b7b04bd87d1e684f2bafdc92a9c16fecc (patch)
tree597d7838e019ae73b4cea6962c484d30ae31e593
parentf9e3d2e147ee3b18dbc09e56d13e6fc8758ac375 (diff)
downloadu-boot-7a81989b7b04bd87d1e684f2bafdc92a9c16fecc.zip
u-boot-7a81989b7b04bd87d1e684f2bafdc92a9c16fecc.tar.gz
u-boot-7a81989b7b04bd87d1e684f2bafdc92a9c16fecc.tar.bz2
common: hash: Remove a debug printf statement
Remove a left-over debug printf that was introduced with SHA512 support. Fixes: d16b38f42704 ("Add support for SHA384 and SHA512") Signed-off-by: Harald Seiler <hws@denx.de>
-rw-r--r--common/hash.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/common/hash.c b/common/hash.c
index 5c75848..05238a8 100644
--- a/common/hash.c
+++ b/common/hash.c
@@ -146,8 +146,6 @@ static int hash_finish_sha512(struct hash_algo *algo, void *ctx, void
if (size < algo->digest_size)
return -1;
- printf("hello world\n");
-
sha512_finish((sha512_context *)ctx, dest_buf);
free(ctx);
return 0;