From: Kyle Meyer Date: Mon, 17 Jun 2024 20:33:17 +0000 (-0500) Subject: crypto: deflate - Add aliases to deflate X-Git-Tag: v6.11-rc1~119^2~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e0eece0cebe4b739c47abad958d17669ff8c005d;p=thirdparty%2Fkernel%2Flinux.git crypto: deflate - Add aliases to deflate iaa_crypto depends on the deflate compression algorithm that's provided by deflate. If the algorithm is not available because CRYPTO_DEFLATE=m and deflate is not inserted, iaa_crypto will request "crypto-deflate-generic". Deflate will not be inserted because "crypto-deflate-generic" is not a valid alias. Add deflate-generic and crypto-deflate-generic aliases to deflate. Signed-off-by: Kyle Meyer Signed-off-by: Herbert Xu --- diff --git a/crypto/deflate.c b/crypto/deflate.c index 6e31e0db0e865..98e8bcb81a6aa 100644 --- a/crypto/deflate.c +++ b/crypto/deflate.c @@ -311,3 +311,4 @@ MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Deflate Compression Algorithm for IPCOMP"); MODULE_AUTHOR("James Morris "); MODULE_ALIAS_CRYPTO("deflate"); +MODULE_ALIAS_CRYPTO("deflate-generic");