Example #1
0
static void deflate_exit(struct crypto_tfm *tfm)
{
    struct deflate_ctx *ctx = crypto_tfm_ctx(tfm);

    deflate_comp_exit(ctx);
    deflate_decomp_exit(ctx);
}
Example #2
0
static void __deflate_exit(void *ctx)
{
	deflate_comp_exit(ctx);
	deflate_decomp_exit(ctx);
}