hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
kernel/crypto/seed.c
....@@ -1,12 +1,8 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Cryptographic API.
34 *
45 * SEED Cipher Algorithm.
5
- *
6
- * This program is free software; you can redistribute it and/or modify
7
- * it under the terms of the GNU General Public License as published by
8
- * the Free Software Foundation; either version 2 of the License, or
9
- * (at your option) any later version.
106 *
117 * Documentation of SEED can be found in RFC 4269.
128 * Copyright (C) 2007 Korea Information Security Agency (KISA).
....@@ -470,7 +466,7 @@
470466 crypto_unregister_alg(&seed_alg);
471467 }
472468
473
-module_init(seed_init);
469
+subsys_initcall(seed_init);
474470 module_exit(seed_fini);
475471
476472 MODULE_DESCRIPTION("SEED Cipher Algorithm");