diff options
Diffstat (limited to 'crypto/lzo.c')
-rw-r--r-- | crypto/lzo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/lzo.c b/crypto/lzo.c index 48c32883f024..b5e77077d751 100644 --- a/crypto/lzo.c +++ b/crypto/lzo.c | |||
@@ -89,18 +89,18 @@ static struct crypto_alg alg = { | |||
89 | .coa_decompress = lzo_decompress } } | 89 | .coa_decompress = lzo_decompress } } |
90 | }; | 90 | }; |
91 | 91 | ||
92 | static int __init init(void) | 92 | static int __init lzo_mod_init(void) |
93 | { | 93 | { |
94 | return crypto_register_alg(&alg); | 94 | return crypto_register_alg(&alg); |
95 | } | 95 | } |
96 | 96 | ||
97 | static void __exit fini(void) | 97 | static void __exit lzo_mod_fini(void) |
98 | { | 98 | { |
99 | crypto_unregister_alg(&alg); | 99 | crypto_unregister_alg(&alg); |
100 | } | 100 | } |
101 | 101 | ||
102 | module_init(init); | 102 | module_init(lzo_mod_init); |
103 | module_exit(fini); | 103 | module_exit(lzo_mod_fini); |
104 | 104 | ||
105 | MODULE_LICENSE("GPL"); | 105 | MODULE_LICENSE("GPL"); |
106 | MODULE_DESCRIPTION("LZO Compression Algorithm"); | 106 | MODULE_DESCRIPTION("LZO Compression Algorithm"); |