diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-30 11:25:55 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2025-05-05 13:20:44 +0300 |
commit | ce026b35b7b62094b640d3781d09bbd5b132b326 (patch) | |
tree | 6bf0316319c1b2e9b014805cad9caa7242d71694 /arch/x86/lib | |
parent | ef93f1562803cd7bb8159e3abedaf7f47dce4e35 (diff) | |
download | linux-ce026b35b7b62094b640d3781d09bbd5b132b326.tar.xz |
crypto: x86/blake2s - Include linux/init.h
Explicitly include linux/init.h rather than pulling it through
potluck.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/lib')
-rw-r--r-- | arch/x86/lib/crypto/blake2s-glue.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/arch/x86/lib/crypto/blake2s-glue.c b/arch/x86/lib/crypto/blake2s-glue.c index 00f84f29cc8c..adc296cd17c9 100644 --- a/arch/x86/lib/crypto/blake2s-glue.c +++ b/arch/x86/lib/crypto/blake2s-glue.c @@ -3,17 +3,15 @@ * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ -#include <crypto/internal/blake2s.h> - -#include <linux/types.h> -#include <linux/jump_label.h> -#include <linux/kernel.h> -#include <linux/sizes.h> - #include <asm/cpufeature.h> #include <asm/fpu/api.h> #include <asm/processor.h> #include <asm/simd.h> +#include <crypto/internal/blake2s.h> +#include <linux/init.h> +#include <linux/jump_label.h> +#include <linux/kernel.h> +#include <linux/sizes.h> asmlinkage void blake2s_compress_ssse3(struct blake2s_state *state, const u8 *block, const size_t nblocks, |