diff options
author | Eric Biggers <ebiggers@google.com> | 2025-04-01 15:16:00 -0700 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2025-04-04 11:31:42 -0700 |
commit | b261d2222063a9a8b9ec284244c285f2998ee01e (patch) | |
tree | fb7bd89d372a423b2520981e36f3a53b7946c823 /fs/erofs | |
parent | 31ab49a99f0572da6a62f121878e2155b04904e5 (diff) |
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 'fs/erofs')
-rw-r--r-- | fs/erofs/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/erofs/Kconfig b/fs/erofs/Kconfig index 331e49cd1b8d..8f68ec49ad89 100644 --- a/fs/erofs/Kconfig +++ b/fs/erofs/Kconfig @@ -3,8 +3,8 @@ config EROFS_FS tristate "EROFS filesystem support" depends on BLOCK + select CRC32 select FS_IOMAP - select LIBCRC32C help EROFS (Enhanced Read-Only File System) is a lightweight read-only file system with modern designs (e.g. no buffer heads, inline |