arm64: dts: rk3368-tb_8846.dts: modify rk818 battery node
[firefly-linux-kernel-4.4.55.git] / crypto / api.c
index 37c4c7213de070c9fbda60db25e92f1283cdcb6e..335abea14f19708b2165222ad2fb4f00fcd8f6e5 100644 (file)
@@ -216,11 +216,11 @@ struct crypto_alg *crypto_larval_lookup(const char *name, u32 type, u32 mask)
 
        alg = crypto_alg_lookup(name, type, mask);
        if (!alg) {
-               request_module("%s", name);
+               request_module("crypto-%s", name);
 
                if (!((type ^ CRYPTO_ALG_NEED_FALLBACK) & mask &
                      CRYPTO_ALG_NEED_FALLBACK))
-                       request_module("%s-all", name);
+                       request_module("crypto-%s-all", name);
 
                alg = crypto_alg_lookup(name, type, mask);
        }