summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLEROY Christophe <christophe.leroy@c-s.fr>2017-09-13 10:44:51 (GMT)
committerXie Xiaobo <xiaobo.xie@nxp.com>2017-12-13 03:18:54 (GMT)
commit7ddfe40bb4de3028b4b5c794add252bd0005d788 (patch)
tree1ecce90c8e4c873784c0f671e41955149fcb5660
parent6d52ef703d187e992c771f2458280e95630e37b8 (diff)
downloadlinux-7ddfe40bb4de3028b4b5c794add252bd0005d788.tar.xz
crypto: talitos - fix sha224
commit afd62fa26343be6445479e75de9f07092a061459 upstream. Kernel crypto tests report the following error at startup [ 2.752626] alg: hash: Test 4 failed for sha224-talitos [ 2.757907] 00000000: 30 e2 86 e2 e7 8a dd 0d d7 eb 9f d5 83 fe f1 b0 00000010: 2d 5a 6c a5 f9 55 ea fd 0e 72 05 22 This patch fixes it Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/crypto/talitos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/crypto/talitos.c b/drivers/crypto/talitos.c
index f6f811a..d5e7300 100644
--- a/drivers/crypto/talitos.c
+++ b/drivers/crypto/talitos.c
@@ -1756,9 +1756,9 @@ static int common_nonsnoop_hash(struct talitos_edesc *edesc,
req_ctx->swinit = 0;
} else {
desc->ptr[1] = zero_entry;
- /* Indicate next op is not the first. */
- req_ctx->first = 0;
}
+ /* Indicate next op is not the first. */
+ req_ctx->first = 0;
/* HMAC key */
if (ctx->keylen)