hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/crypto/blowfish_generic.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Cryptographic API.
34 *
....@@ -9,12 +10,6 @@
910 * Copyright (c) Herbert Valerio Riedel <hvr@hvrlab.org>
1011 * Copyright (c) Kyle McMartin <kyle@debian.org>
1112 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
12
- *
13
- * This program is free software; you can redistribute it and/or modify
14
- * it under the terms of the GNU General Public License as published by
15
- * the Free Software Foundation; either version 2 of the License, or
16
- * (at your option) any later version.
17
- *
1813 */
1914 #include <linux/init.h>
2015 #include <linux/module.h>
....@@ -133,7 +128,7 @@
133128 crypto_unregister_alg(&alg);
134129 }
135130
136
-module_init(blowfish_mod_init);
131
+subsys_initcall(blowfish_mod_init);
137132 module_exit(blowfish_mod_fini);
138133
139134 MODULE_LICENSE("GPL");