Skip to content

Commit 7cf97a1

Browse files
committed
crypto: acomp - Remove dst_free
Remove the unused dst_free hook. Signed-off-by: Herbert Xu <[email protected]>
1 parent c964444 commit 7cf97a1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

include/crypto/internal/acompress.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
*
1818
* @compress: Function performs a compress operation
1919
* @decompress: Function performs a de-compress operation
20-
* @dst_free: Frees destination buffer if allocated inside the algorithm
2120
* @init: Initialize the cryptographic transformation object.
2221
* This function is used to initialize the cryptographic
2322
* transformation object. This function is called only once at
@@ -38,7 +37,6 @@
3837
struct acomp_alg {
3938
int (*compress)(struct acomp_req *req);
4039
int (*decompress)(struct acomp_req *req);
41-
void (*dst_free)(struct scatterlist *dst);
4240
int (*init)(struct crypto_acomp *tfm);
4341
void (*exit)(struct crypto_acomp *tfm);
4442

0 commit comments

Comments
 (0)