X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=crypto%2Fcompress.c;h=1ee357085d3a40bfdd8e3013e7fc7b501eb32948;hb=c54554d388369f7f88ddcbe285ca96f7fb8a2d4b;hp=c12fc0c41dac74152dbdf226b4f7046bef5500e6;hpb=6c2bb98bc33ae33c7a33a133a4cd5a06395fece5;p=linux-2.6 diff --git a/crypto/compress.c b/crypto/compress.c index c12fc0c41d..1ee357085d 100644 --- a/crypto/compress.c +++ b/crypto/compress.c @@ -14,7 +14,6 @@ #include #include #include -#include #include #include "internal.h" @@ -34,28 +33,16 @@ static int crypto_decompress(struct crypto_tfm *tfm, dlen); } -int crypto_init_compress_flags(struct crypto_tfm *tfm, u32 flags) -{ - return flags ? -EINVAL : 0; -} - int crypto_init_compress_ops(struct crypto_tfm *tfm) { - int ret = 0; struct compress_tfm *ops = &tfm->crt_compress; - - ret = tfm->__crt_alg->cra_compress.coa_init(crypto_tfm_ctx(tfm)); - if (ret) - goto out; ops->cot_compress = crypto_compress; ops->cot_decompress = crypto_decompress; -out: - return ret; + return 0; } void crypto_exit_compress_ops(struct crypto_tfm *tfm) { - tfm->__crt_alg->cra_compress.coa_exit(crypto_tfm_ctx(tfm)); }