diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-12-05 12:59:25 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-01-11 00:16:33 +0300 |
commit | b2ab4a57b018aafbba35bff088218f5cc3d2142e (patch) | |
tree | a46c5bd42927c24c69f0786be2651ff3fba6c10e /crypto/digest.c | |
parent | 42c271c6c538857cb13c5ead5184d264d745f675 (diff) | |
download | linux-b2ab4a57b018aafbba35bff088218f5cc3d2142e.tar.xz |
[CRYPTO] scatterwalk: Restore custom sg chaining for now
Unfortunately the generic chaining hasn't been ported to all architectures
yet, and notably not s390. So this patch restores the chainging that we've
been using previously which does work everywhere.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/digest.c')
-rw-r--r-- | crypto/digest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/digest.c b/crypto/digest.c index 52845f53f8e1..6fd43bddd545 100644 --- a/crypto/digest.c +++ b/crypto/digest.c @@ -75,7 +75,7 @@ static int update2(struct hash_desc *desc, if (!nbytes) break; - sg = sg_next(sg); + sg = scatterwalk_sg_next(sg); } return 0; |