projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f9e3d2e
)
common: hash: Remove a debug printf statement
author
Harald Seiler
<hws@denx.de>
Mon, 15 Jun 2020 07:47:04 +0000
(09:47 +0200)
committer
Tom Rini
<trini@konsulko.com>
Tue, 16 Jun 2020 15:36:30 +0000
(11:36 -0400)
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>
common/hash.c
patch
|
blob
|
history
diff --git
a/common/hash.c
b/common/hash.c
index 5c75848b7d92e0a05b1eaebb04a52cd88a45f46d..05238a8ba91e18a2cfc99db938d8f6cd7561da6a 100644
(file)
--- 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;