X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=crypto%2Fcompress.c;h=0a6570048c1efb6ffaf6199662e4e33ee7ae9010;hb=b4fea61a193bdd75f6667a0db04eb74b9ccbe39c;hp=c12fc0c41dac74152dbdf226b4f7046bef5500e6;hpb=6c2bb98bc33ae33c7a33a133a4cd5a06395fece5;p=linux-2.6-omap-h63xx.git diff --git a/crypto/compress.c b/crypto/compress.c index c12fc0c41da..0a6570048c1 100644 --- a/crypto/compress.c +++ b/crypto/compress.c @@ -34,28 +34,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)); }