diff options
author | Sachin Sant <sachinp@in.ibm.com> | 2009-07-16 07:58:42 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-16 07:58:42 -0400 |
commit | 2a549c364aa11e658ae14b71861d25474e5808cf (patch) | |
tree | 32188e3b35316bb61a60bb4f77162441eada54e6 /arch/s390/crypto | |
parent | e9b25f16cda88b33fe15b30c009912e6c471edda (diff) |
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: Sachin Sant <sachinp@in.ibm.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/s390/crypto')
-rw-r--r-- | arch/s390/crypto/sha1_s390.c | 2 | ||||
-rw-r--r-- | arch/s390/crypto/sha256_s390.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/crypto/sha1_s390.c b/arch/s390/crypto/sha1_s390.c index 2c5ec7969e37..4a943789c208 100644 --- a/arch/s390/crypto/sha1_s390.c +++ b/arch/s390/crypto/sha1_s390.c | |||
@@ -59,7 +59,7 @@ static int sha1_export(struct shash_desc *desc, void *out) | |||
59 | 59 | ||
60 | static int sha1_import(struct shash_desc *desc, const u8 *in) | 60 | static int sha1_import(struct shash_desc *desc, const u8 *in) |
61 | { | 61 | { |
62 | struct sha1_state *sctx = shash_desc_ctx(desc); | 62 | struct s390_sha_ctx *sctx = shash_desc_ctx(desc); |
63 | struct sha1_state *ictx = in; | 63 | struct sha1_state *ictx = in; |
64 | 64 | ||
65 | sctx->count = ictx->count; | 65 | sctx->count = ictx->count; |
diff --git a/arch/s390/crypto/sha256_s390.c b/arch/s390/crypto/sha256_s390.c index 943a669452cf..2bab5197789f 100644 --- a/arch/s390/crypto/sha256_s390.c +++ b/arch/s390/crypto/sha256_s390.c | |||
@@ -55,7 +55,7 @@ static int sha256_export(struct shash_desc *desc, void *out) | |||
55 | 55 | ||
56 | static int sha256_import(struct shash_desc *desc, const u8 *in) | 56 | static int sha256_import(struct shash_desc *desc, const u8 *in) |
57 | { | 57 | { |
58 | struct sha256_state *sctx = shash_desc_ctx(desc); | 58 | struct s390_sha_ctx *sctx = shash_desc_ctx(desc); |
59 | struct sha256_state *ictx = in; | 59 | struct sha256_state *ictx = in; |
60 | 60 | ||
61 | sctx->count = ictx->count; | 61 | sctx->count = ictx->count; |