diff options
author | Eric Biggers <ebiggers@google.com> | 2025-03-04 15:07:11 -0800 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2025-03-10 09:29:29 -0700 |
commit | dce214db5d999016b4cd94c6539e6e48821af45c (patch) | |
tree | d4d33d7d850d41613880981d514fc9b1cc93eddc /lib | |
parent | aa09b3223c8500e14d072729488124c614e4f220 (diff) |
lib/crc: remove unnecessary prompt for CONFIG_LIBCRC32C
All modules that need CONFIG_LIBCRC32C already select it, so there is no
need to bother users about the option.
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Link: https://lore.kernel.org/r/20250304230712.167600-5-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 31add0dc4292..4bf2dd9f49a8 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -215,7 +215,7 @@ config CRC7 tristate config LIBCRC32C - tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check" + tristate select CRC32 help This option just selects CRC32 and is provided for compatibility |