.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Cryptographic API. |
---|
3 | 4 | * |
---|
.. | .. |
---|
9 | 10 | * Copyright (c) Herbert Valerio Riedel <hvr@hvrlab.org> |
---|
10 | 11 | * Copyright (c) Kyle McMartin <kyle@debian.org> |
---|
11 | 12 | * 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 | | - * |
---|
18 | 13 | */ |
---|
19 | 14 | #include <linux/init.h> |
---|
20 | 15 | #include <linux/module.h> |
---|
.. | .. |
---|
133 | 128 | crypto_unregister_alg(&alg); |
---|
134 | 129 | } |
---|
135 | 130 | |
---|
136 | | -module_init(blowfish_mod_init); |
---|
| 131 | +subsys_initcall(blowfish_mod_init); |
---|
137 | 132 | module_exit(blowfish_mod_fini); |
---|
138 | 133 | |
---|
139 | 134 | MODULE_LICENSE("GPL"); |
---|