X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=crypto%2Fcompress.c;h=1ee357085d3a40bfdd8e3013e7fc7b501eb32948;hb=e0eb2424469ec2333885672d3db8bd07d322455d;hp=f3e07334afd09457e25eb22cea2470f125d12b1a;hpb=110bf1c0e932615cbe43a8af8a07bc3750ae4295;p=pandora-kernel.git diff --git a/crypto/compress.c b/crypto/compress.c index f3e07334afd0..1ee357085d3a 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(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(tfm); }