From: Eric Biggers <[email protected]> Since bcachefs does not access crc32c and crc64 through the crypto API, there is no need to use module softdeps to ensure they are loaded.
Signed-off-by: Eric Biggers <[email protected]> --- fs/bcachefs/super.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fs/bcachefs/super.c b/fs/bcachefs/super.c index 78a8daa80fcce..6de3a5751561e 100644 --- a/fs/bcachefs/super.c +++ b/fs/bcachefs/super.c @@ -73,12 +73,10 @@ #include <crypto/hash.h> MODULE_LICENSE("GPL"); MODULE_AUTHOR("Kent Overstreet <[email protected]>"); MODULE_DESCRIPTION("bcachefs filesystem"); -MODULE_SOFTDEP("pre: crc32c"); -MODULE_SOFTDEP("pre: crc64"); MODULE_SOFTDEP("pre: sha256"); MODULE_SOFTDEP("pre: chacha20"); MODULE_SOFTDEP("pre: poly1305"); MODULE_SOFTDEP("pre: xxhash"); base-commit: da920b7df701770e006928053672147075587fb2 -- 2.49.0
