From: Eric Biggers Date: Sun, 16 Mar 2025 03:03:19 +0000 (-0700) Subject: bcachefs: Remove unnecessary softdeps on crc32c and crc64 X-Git-Tag: v6.15-rc1~146^2~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39abc73b595587180ce4d57c4ca56a52ca796fc2;p=thirdparty%2Fkernel%2Flinux.git bcachefs: Remove unnecessary softdeps on crc32c and crc64 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 Signed-off-by: Kent Overstreet --- 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 @@ -75,8 +75,6 @@ MODULE_LICENSE("GPL"); MODULE_AUTHOR("Kent Overstreet "); MODULE_DESCRIPTION("bcachefs filesystem"); -MODULE_SOFTDEP("pre: crc32c"); -MODULE_SOFTDEP("pre: crc64"); MODULE_SOFTDEP("pre: sha256"); MODULE_SOFTDEP("pre: chacha20"); MODULE_SOFTDEP("pre: poly1305");