diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2023-03-20 11:24:35 +0100 |
---|---|---|
committer | Luis Chamberlain <mcgrof@kernel.org> | 2023-04-13 22:13:51 +0200 |
commit | b71e2a69d16c8d12c2b1aadeffd59ed1920d50e9 (patch) | |
tree | a8eb343b439f7c0c3401e4dc6455551d15fcffa0 /arch/x86/crypto | |
parent | crypto: remove MODULE_LICENSE in non-modules (diff) | |
download | linux-b71e2a69d16c8d12c2b1aadeffd59ed1920d50e9.tar.xz linux-b71e2a69d16c8d12c2b1aadeffd59ed1920d50e9.zip |
crypto: blake2s: remove module_init and module.h inclusion
Now this can no longer be built as a module, drop all remaining
module-related code as well.
Signed-off-by: Nick Alcock <nick.alcock@oracle.com>
Suggested-by: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Luis Chamberlain <mcgrof@kernel.org>
Cc: linux-modules@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: x86@kernel.org
Cc: linux-crypto@vger.kernel.org
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | arch/x86/crypto/blake2s-glue.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/crypto/blake2s-glue.c b/arch/x86/crypto/blake2s-glue.c index 0df9ec15643a..0313f9673f56 100644 --- a/arch/x86/crypto/blake2s-glue.c +++ b/arch/x86/crypto/blake2s-glue.c @@ -8,7 +8,6 @@ #include <linux/types.h> #include <linux/jump_label.h> #include <linux/kernel.h> -#include <linux/module.h> #include <linux/sizes.h> #include <asm/cpufeature.h> @@ -72,5 +71,4 @@ static int __init blake2s_mod_init(void) return 0; } -module_init(blake2s_mod_init); - +subsys_initcall(blake2s_mod_init); |