| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* Kernel cryptographic api. |
|---|
| 2 | 3 | * cast5.c - Cast5 cipher algorithm (rfc2144). |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 9 | 10 | * |
|---|
| 10 | 11 | * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. |
|---|
| 11 | 12 | * 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/>. |
|---|
| 20 | 13 | */ |
|---|
| 21 | 14 | |
|---|
| 22 | 15 | |
|---|
| .. | .. |
|---|
| 543 | 536 | crypto_unregister_alg(&alg); |
|---|
| 544 | 537 | } |
|---|
| 545 | 538 | |
|---|
| 546 | | -module_init(cast5_mod_init); |
|---|
| 539 | +subsys_initcall(cast5_mod_init); |
|---|
| 547 | 540 | module_exit(cast5_mod_fini); |
|---|
| 548 | 541 | |
|---|
| 549 | 542 | MODULE_LICENSE("GPL"); |
|---|