Use struct s390_sha_ctx instead of sha1/sha256_state struct to fix
s390 crypto build break.
Signed-off-by: Sachin Sant <sachinp@in.ibm.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
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;
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;