We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c964444 commit 7cf97a1Copy full SHA for 7cf97a1
include/crypto/internal/acompress.h
@@ -17,7 +17,6 @@
17
*
18
* @compress: Function performs a compress operation
19
* @decompress: Function performs a de-compress operation
20
- * @dst_free: Frees destination buffer if allocated inside the algorithm
21
* @init: Initialize the cryptographic transformation object.
22
* This function is used to initialize the cryptographic
23
* transformation object. This function is called only once at
@@ -38,7 +37,6 @@
38
37
struct acomp_alg {
39
int (*compress)(struct acomp_req *req);
40
int (*decompress)(struct acomp_req *req);
41
- void (*dst_free)(struct scatterlist *dst);
42
int (*init)(struct crypto_acomp *tfm);
43
void (*exit)(struct crypto_acomp *tfm);
44
0 commit comments