X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=crypto%2Falgboss.c;h=412241ce4cfae25822a6beccf9360c9f52ccc89f;hb=d90a7e86401ffea2163a4337f3a47f3909c4e255;hp=9908dd830c2631041c3a681b3efae8b4eb687e39;hpb=cf5046323ea254be72535648a9d090b18b8510f3;p=pandora-kernel.git diff --git a/crypto/algboss.c b/crypto/algboss.c index 9908dd830c26..412241ce4cfa 100644 --- a/crypto/algboss.c +++ b/crypto/algboss.c @@ -68,6 +68,11 @@ static int cryptomgr_probe(void *data) goto err; do { + if (tmpl->create) { + err = tmpl->create(tmpl, param->tb); + continue; + } + inst = tmpl->alloc(param->tb); if (IS_ERR(inst)) err = PTR_ERR(inst);