zstd.c (3eb66e91a25497065c5322b1268cbc3953642227) | zstd.c (c4741b23059794bd99beef0f700103b0d983b3fd) |
---|---|
1/* 2 * Cryptographic API. 3 * 4 * Copyright (c) 2017-present, Facebook, Inc. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 as published by 8 * the Free Software Foundation. --- 243 unchanged lines hidden (view full) --- 252} 253 254static void __exit zstd_mod_fini(void) 255{ 256 crypto_unregister_alg(&alg); 257 crypto_unregister_scomp(&scomp); 258} 259 | 1/* 2 * Cryptographic API. 3 * 4 * Copyright (c) 2017-present, Facebook, Inc. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 as published by 8 * the Free Software Foundation. --- 243 unchanged lines hidden (view full) --- 252} 253 254static void __exit zstd_mod_fini(void) 255{ 256 crypto_unregister_alg(&alg); 257 crypto_unregister_scomp(&scomp); 258} 259 |
260module_init(zstd_mod_init); | 260subsys_initcall(zstd_mod_init); |
261module_exit(zstd_mod_fini); 262 263MODULE_LICENSE("GPL"); 264MODULE_DESCRIPTION("Zstd Compression Algorithm"); 265MODULE_ALIAS_CRYPTO("zstd"); | 261module_exit(zstd_mod_fini); 262 263MODULE_LICENSE("GPL"); 264MODULE_DESCRIPTION("Zstd Compression Algorithm"); 265MODULE_ALIAS_CRYPTO("zstd"); |