Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2a549c36 authored by Sachin Sant's avatar Sachin Sant Committed by Herbert Xu
Browse files

crypto: s390 - Fix sha build failure



Use struct s390_sha_ctx instead of sha1/sha256_state struct to fix
s390 crypto build break.

Signed-off-by: default avatarSachin Sant <sachinp@in.ibm.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent e9b25f16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ static int sha1_export(struct shash_desc *desc, void *out)

static int sha1_import(struct shash_desc *desc, const u8 *in)
{
	struct sha1_state *sctx = shash_desc_ctx(desc);
	struct s390_sha_ctx *sctx = shash_desc_ctx(desc);
	struct sha1_state *ictx = in;

	sctx->count = ictx->count;
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ static int sha256_export(struct shash_desc *desc, void *out)

static int sha256_import(struct shash_desc *desc, const u8 *in)
{
	struct sha256_state *sctx = shash_desc_ctx(desc);
	struct s390_sha_ctx *sctx = shash_desc_ctx(desc);
	struct sha256_state *ictx = in;

	sctx->count = ictx->count;