aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/crypto/sha256_s390.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/s390/crypto/sha256_s390.c')
-rw-r--r--arch/s390/crypto/sha256_s390.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/crypto/sha256_s390.c b/arch/s390/crypto/sha256_s390.c
index 2bab5197789f..61a7db372121 100644
--- a/arch/s390/crypto/sha256_s390.c
+++ b/arch/s390/crypto/sha256_s390.c
@@ -53,10 +53,10 @@ static int sha256_export(struct shash_desc *desc, void *out)
53 return 0; 53 return 0;
54} 54}
55 55
56static int sha256_import(struct shash_desc *desc, const u8 *in) 56static int sha256_import(struct shash_desc *desc, const void *in)
57{ 57{
58 struct s390_sha_ctx *sctx = shash_desc_ctx(desc); 58 struct s390_sha_ctx *sctx = shash_desc_ctx(desc);
59 struct sha256_state *ictx = in; 59 const struct sha256_state *ictx = in;
60 60
61 sctx->count = ictx->count; 61 sctx->count = ictx->count;
62 memcpy(sctx->state, ictx->state, sizeof(ictx->state)); 62 memcpy(sctx->state, ictx->state, sizeof(ictx->state));