diff options
author | 2025-03-04 15:07:11 -0800 | |
---|---|---|
committer | 2025-03-10 09:29:29 -0700 | |
commit | dce214db5d999016b4cd94c6539e6e48821af45c (patch) | |
tree | d4d33d7d850d41613880981d514fc9b1cc93eddc /lib | |
parent | lib/crc: remove unnecessary prompt for CONFIG_CRC8 (diff) | |
download | wireguard-linux-dce214db5d999016b4cd94c6539e6e48821af45c.tar.xz wireguard-linux-dce214db5d999016b4cd94c6539e6e48821af45c.zip |
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 |