Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

+5 -7
+5 -7
arch/x86/lib/crypto/blake2s-glue.c
··· 3 3 * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. 4 4 */ 5 5 6 - #include <crypto/internal/blake2s.h> 7 - 8 - #include <linux/types.h> 9 - #include <linux/jump_label.h> 10 - #include <linux/kernel.h> 11 - #include <linux/sizes.h> 12 - 13 6 #include <asm/cpufeature.h> 14 7 #include <asm/fpu/api.h> 15 8 #include <asm/processor.h> 16 9 #include <asm/simd.h> 10 + #include <crypto/internal/blake2s.h> 11 + #include <linux/init.h> 12 + #include <linux/jump_label.h> 13 + #include <linux/kernel.h> 14 + #include <linux/sizes.h> 17 15 18 16 asmlinkage void blake2s_compress_ssse3(struct blake2s_state *state, 19 17 const u8 *block, const size_t nblocks,