diff options
author | Eric Biggers <ebiggers@google.com> | 2025-04-12 21:54:20 -0700 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2025-04-16 15:36:25 +0800 |
commit | 34374f76af9b65f7cf89c2fe62489593d6ecc443 (patch) | |
tree | 8978423348f8d25f00a9e40d3e07cedd233f6607 | |
parent | 21969da642a263dde2f7b483ad676b901ae129a3 (diff) |
crypto: x86/poly1305 - don't select CRYPTO_LIB_POLY1305_GENERIC
The x86 Poly1305 code never falls back to the generic code, so selecting
CRYPTO_LIB_POLY1305_GENERIC is unnecessary.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | arch/x86/crypto/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/crypto/Kconfig b/arch/x86/crypto/Kconfig index b4a4dc722ba8..9a3cade49f63 100644 --- a/arch/x86/crypto/Kconfig +++ b/arch/x86/crypto/Kconfig @@ -399,7 +399,6 @@ config CRYPTO_POLYVAL_CLMUL_NI config CRYPTO_POLY1305_X86_64 tristate depends on X86 && 64BIT - select CRYPTO_LIB_POLY1305_GENERIC select CRYPTO_ARCH_HAVE_LIB_POLY1305 default CRYPTO_LIB_POLY1305_INTERNAL |