[PATCH 5/5] lib/crc: remove unnecessary prompt for CONFIG_CRC64

Eric Biggers posted 5 patches 11 months, 1 week ago
[PATCH 5/5] lib/crc: remove unnecessary prompt for CONFIG_CRC64
Posted by Eric Biggers 11 months, 1 week ago
From: Eric Biggers <ebiggers@google.com>

All modules that need CONFIG_CRC64 already select it, so there is no
need to bother users about the option.

Signed-off-by: Eric Biggers <ebiggers@google.com>
---
 lib/Kconfig | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/lib/Kconfig b/lib/Kconfig
index 4bf2dd9f49a80..61cce0686b53e 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -192,16 +192,11 @@ config ARCH_HAS_CRC32
 config CRC32_ARCH
 	tristate
 	default CRC32 if ARCH_HAS_CRC32 && CRC_OPTIMIZATIONS
 
 config CRC64
-	tristate "CRC64 functions"
-	help
-	  This option is provided for the case where no in-kernel-tree
-	  modules require CRC64 functions, but a module built outside
-	  the kernel tree does. Such modules that use library CRC64
-	  functions require M here.
+	tristate
 
 config ARCH_HAS_CRC64
 	bool
 
 config CRC64_ARCH
-- 
2.48.1