Commit b71e2a69 authored by Nick Alcock's avatar Nick Alcock Committed by Luis Chamberlain

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: default avatarNick Alcock <nick.alcock@oracle.com>
Suggested-by: default avatarHerbert 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: default avatarLuis Chamberlain <mcgrof@kernel.org>
parent 41a98c68
......@@ -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);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment