]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
crypto: x86/blake2s - Include linux/init.h
authorHerbert Xu <herbert@gondor.apana.org.au>
Wed, 30 Apr 2025 08:25:55 +0000 (16:25 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Mon, 5 May 2025 10:20:44 +0000 (18:20 +0800)
Explicitly include linux/init.h rather than pulling it through
potluck.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
arch/x86/lib/crypto/blake2s-glue.c

index 00f84f29cc8c913d339f64126c9527805bf8c470..adc296cd17c933d7d82f7036f30c6a504f3f25a9 100644 (file)
@@ -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,