diff options
Diffstat (limited to 'crypto/deflate.c')
-rw-r--r-- | crypto/deflate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/deflate.c b/crypto/deflate.c index 6588bbf82e9b..9128da44e953 100644 --- a/crypto/deflate.c +++ b/crypto/deflate.c | |||
@@ -208,18 +208,18 @@ static struct crypto_alg alg = { | |||
208 | .coa_decompress = deflate_decompress } } | 208 | .coa_decompress = deflate_decompress } } |
209 | }; | 209 | }; |
210 | 210 | ||
211 | static int __init init(void) | 211 | static int __init deflate_mod_init(void) |
212 | { | 212 | { |
213 | return crypto_register_alg(&alg); | 213 | return crypto_register_alg(&alg); |
214 | } | 214 | } |
215 | 215 | ||
216 | static void __exit fini(void) | 216 | static void __exit deflate_mod_fini(void) |
217 | { | 217 | { |
218 | crypto_unregister_alg(&alg); | 218 | crypto_unregister_alg(&alg); |
219 | } | 219 | } |
220 | 220 | ||
221 | module_init(init); | 221 | module_init(deflate_mod_init); |
222 | module_exit(fini); | 222 | module_exit(deflate_mod_fini); |
223 | 223 | ||
224 | MODULE_LICENSE("GPL"); | 224 | MODULE_LICENSE("GPL"); |
225 | MODULE_DESCRIPTION("Deflate Compression Algorithm for IPCOMP"); | 225 | MODULE_DESCRIPTION("Deflate Compression Algorithm for IPCOMP"); |