diff options
author | Eric Biggers <ebiggers@google.com> | 2020-12-23 11:09:52 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2021-01-03 00:41:38 +0300 |
commit | df412e7efda1e2c5b5fcb06701bba77434cbd1e8 (patch) | |
tree | 792a5180b0963039612d8edd3247d5d87806ec16 /crypto/blake2s_generic.c | |
parent | 1aa90f4cf034ed4f016a02330820ac0551a6c13c (diff) | |
download | linux-df412e7efda1e2c5b5fcb06701bba77434cbd1e8.tar.xz |
crypto: blake2s - remove unneeded includes
It doesn't make sense for the generic implementation of BLAKE2s to
include <crypto/internal/simd.h> and <linux/jump_label.h>, as these are
things that would only be useful in an architecture-specific
implementation. Remove these unnecessary includes.
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/blake2s_generic.c')
-rw-r--r-- | crypto/blake2s_generic.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/blake2s_generic.c b/crypto/blake2s_generic.c index e3aa6e7ff3d8..b89536c3671c 100644 --- a/crypto/blake2s_generic.c +++ b/crypto/blake2s_generic.c @@ -4,11 +4,9 @@ */ #include <crypto/internal/blake2s.h> -#include <crypto/internal/simd.h> #include <crypto/internal/hash.h> #include <linux/types.h> -#include <linux/jump_label.h> #include <linux/kernel.h> #include <linux/module.h> |