]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blobdiff - crypto/acompress.c
Merge tag 'leds-5.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux...
[mirror_ubuntu-hirsute-kernel.git] / crypto / acompress.c
index 84a76723e851bf64d924dca14a6d60ea1dd81b90..c32c72048a1c981ddfad225d7d7df35aed79425c 100644 (file)
@@ -109,6 +109,14 @@ struct crypto_acomp *crypto_alloc_acomp(const char *alg_name, u32 type,
 }
 EXPORT_SYMBOL_GPL(crypto_alloc_acomp);
 
+struct crypto_acomp *crypto_alloc_acomp_node(const char *alg_name, u32 type,
+                                       u32 mask, int node)
+{
+       return crypto_alloc_tfm_node(alg_name, &crypto_acomp_type, type, mask,
+                               node);
+}
+EXPORT_SYMBOL_GPL(crypto_alloc_acomp_node);
+
 struct acomp_req *acomp_request_alloc(struct crypto_acomp *acomp)
 {
        struct crypto_tfm *tfm = crypto_acomp_tfm(acomp);