]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
crypto: s390 - Fix sha build failure
authorSachin Sant <sachinp@in.ibm.com>
Thu, 16 Jul 2009 11:58:42 +0000 (19:58 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 16 Jul 2009 11:58:42 +0000 (19:58 +0800)
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>
arch/s390/crypto/sha1_s390.c
arch/s390/crypto/sha256_s390.c

index 2c5ec7969e3782af1538263c1928281e76b5d8f6..4a943789c208de1739d4efc62b24844d16b728a2 100644 (file)
@@ -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;
index 943a669452cfa81226bfa1e15d398269369449ef..2bab5197789fa0e9a7f6ca4da686a33ea094ef5c 100644 (file)
@@ -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;