diff options
author | Eric Biggers <ebiggers@google.com> | 2025-04-01 15:15:55 -0700 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2025-04-04 11:31:42 -0700 |
commit | 7939da264bcc91ced4d01014241a581e79d414d9 (patch) | |
tree | 6a0fd5302844bd1c228bdaaaf4a39408c0f3c6e9 /lib | |
parent | 9ad19171b6d6fa5dcdd8a1d5d1b82dbdeaf65ab0 (diff) |
lib/crc: remove unnecessary prompt for CONFIG_CRC_CCITT
All modules that need CONFIG_CRC_CCITT already select it, so there is no
need to bother users about the option.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: "Martin K. Petersen" <martin.petersen@oracle.com>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Link: https://lore.kernel.org/r/20250401221600.24878-3-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index c91de83b3e5a..81d8ff429dca 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -139,12 +139,7 @@ config TRACE_MMIO_ACCESS source "lib/crypto/Kconfig" config CRC_CCITT - tristate "CRC-CCITT functions" - help - This option is provided for the case where no in-kernel-tree - modules require CRC-CCITT functions, but a module built outside - the kernel tree does. Such modules that use library CRC-CCITT - functions require M here. + tristate config CRC16 tristate "CRC16 functions" |