diff options
Diffstat (limited to 'crypto/deflate.c')
-rw-r--r-- | crypto/deflate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/deflate.c b/crypto/deflate.c index 5dd2404ae5b2..6588bbf82e9b 100644 --- a/crypto/deflate.c +++ b/crypto/deflate.c | |||
@@ -201,9 +201,9 @@ static struct crypto_alg alg = { | |||
201 | .cra_ctxsize = sizeof(struct deflate_ctx), | 201 | .cra_ctxsize = sizeof(struct deflate_ctx), |
202 | .cra_module = THIS_MODULE, | 202 | .cra_module = THIS_MODULE, |
203 | .cra_list = LIST_HEAD_INIT(alg.cra_list), | 203 | .cra_list = LIST_HEAD_INIT(alg.cra_list), |
204 | .cra_init = deflate_init, | ||
205 | .cra_exit = deflate_exit, | ||
204 | .cra_u = { .compress = { | 206 | .cra_u = { .compress = { |
205 | .coa_init = deflate_init, | ||
206 | .coa_exit = deflate_exit, | ||
207 | .coa_compress = deflate_compress, | 207 | .coa_compress = deflate_compress, |
208 | .coa_decompress = deflate_decompress } } | 208 | .coa_decompress = deflate_decompress } } |
209 | }; | 209 | }; |