diff options
author | 2025-04-01 15:16:00 -0700 | |
---|---|---|
committer | 2025-04-04 11:31:42 -0700 | |
commit | b261d2222063a9a8b9ec284244c285f2998ee01e (patch) | |
tree | fb7bd89d372a423b2520981e36f3a53b7946c823 /lib | |
parent | lib/crc: document all the CRC library kconfig options (diff) | |
download | wireguard-linux-b261d2222063a9a8b9ec284244c285f2998ee01e.tar.xz wireguard-linux-b261d2222063a9a8b9ec284244c285f2998ee01e.zip |
lib/crc: remove CONFIG_LIBCRC32C
Now that LIBCRC32C does nothing besides select CRC32, make every option
that selects LIBCRC32C instead select CRC32 directly. Then remove
LIBCRC32C.
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-8-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to '')
-rw-r--r-- | lib/Kconfig | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 4e796eaea2f4..6c1b8f184267 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -208,13 +208,6 @@ config CRC7 The CRC7 library functions. Select this if your module uses any of the functions from <linux/crc7.h>. -config LIBCRC32C - tristate - select CRC32 - help - This option just selects CRC32 and is provided for compatibility - purposes until the users are updated to select CRC32 directly. - config CRC8 tristate help |