hc
2023-12-09 95099d4622f8cb224d94e314c7a8e0df60b13f87
kernel/crypto/cast5_generic.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /* Kernel cryptographic api.
23 * cast5.c - Cast5 cipher algorithm (rfc2144).
34 *
....@@ -9,14 +10,6 @@
910 *
1011 * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
1112 * Copyright (C) 2003 Kartikey Mahendra Bhatt <kartik_me@hotmail.com>.
12
-*
13
-* This program is free software; you can redistribute it and/or modify it
14
-* under the terms of GNU General Public License as published by the Free
15
-* Software Foundation; either version 2 of the License, or (at your option)
16
-* any later version.
17
-*
18
-* You should have received a copy of the GNU General Public License
19
-* along with this program. If not, see <http://www.gnu.org/licenses/>.
2013 */
2114
2215
....@@ -543,7 +536,7 @@
543536 crypto_unregister_alg(&alg);
544537 }
545538
546
-module_init(cast5_mod_init);
539
+subsys_initcall(cast5_mod_init);
547540 module_exit(cast5_mod_fini);
548541
549542 MODULE_LICENSE("GPL");