Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: acomp - Remove dst_free

Remove the unused dst_free hook.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

-2
-2
include/crypto/internal/acompress.h
··· 17 17 * 18 18 * @compress: Function performs a compress operation 19 19 * @decompress: Function performs a de-compress operation 20 - * @dst_free: Frees destination buffer if allocated inside the algorithm 21 20 * @init: Initialize the cryptographic transformation object. 22 21 * This function is used to initialize the cryptographic 23 22 * transformation object. This function is called only once at ··· 37 38 struct acomp_alg { 38 39 int (*compress)(struct acomp_req *req); 39 40 int (*decompress)(struct acomp_req *req); 40 - void (*dst_free)(struct scatterlist *dst); 41 41 int (*init)(struct crypto_acomp *tfm); 42 42 void (*exit)(struct crypto_acomp *tfm); 43 43