lzo-rle.c (95d002e0a34cb0f238abb39987f9980f325d8332) lzo-rle.c (c4741b23059794bd99beef0f700103b0d983b3fd)
1/*
2 * Cryptographic API.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT

--- 153 unchanged lines hidden (view full) ---

162}
163
164static void __exit lzorle_mod_fini(void)
165{
166 crypto_unregister_alg(&alg);
167 crypto_unregister_scomp(&scomp);
168}
169
1/*
2 * Cryptographic API.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT

--- 153 unchanged lines hidden (view full) ---

162}
163
164static void __exit lzorle_mod_fini(void)
165{
166 crypto_unregister_alg(&alg);
167 crypto_unregister_scomp(&scomp);
168}
169
170module_init(lzorle_mod_init);
170subsys_initcall(lzorle_mod_init);
171module_exit(lzorle_mod_fini);
172
173MODULE_LICENSE("GPL");
174MODULE_DESCRIPTION("LZO-RLE Compression Algorithm");
175MODULE_ALIAS_CRYPTO("lzo-rle");
171module_exit(lzorle_mod_fini);
172
173MODULE_LICENSE("GPL");
174MODULE_DESCRIPTION("LZO-RLE Compression Algorithm");
175MODULE_ALIAS_CRYPTO("lzo-rle");