From 25221872660c9971c3684b66c8cefe0b95849aa6 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 12 Apr 2025 21:54:17 -0700 Subject: [PATCH] crypto: mips/poly1305 - drop redundant dependency on CONFIG_MIPS arch/mips/crypto/Kconfig is sourced only when CONFIG_MIPS is enabled, so there is no need for options defined in that file to depend on it. Signed-off-by: Eric Biggers Signed-off-by: Herbert Xu --- arch/mips/crypto/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/mips/crypto/Kconfig b/arch/mips/crypto/Kconfig index 0189686de3a12..9892391f74ac4 100644 --- a/arch/mips/crypto/Kconfig +++ b/arch/mips/crypto/Kconfig @@ -4,7 +4,6 @@ menu "Accelerated Cryptographic Algorithms for CPU (mips)" config CRYPTO_POLY1305_MIPS tristate - depends on MIPS select CRYPTO_HASH select CRYPTO_ARCH_HAVE_LIB_POLY1305 default CRYPTO_LIB_POLY1305_INTERNAL -- 2.50.1