diff options
author | Jiri Kosina <jkosina@suse.cz> | 2012-08-27 08:04:24 -0700 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-08-27 08:05:17 -0700 |
commit | 66a61fc0b2c3475f26f65b5f29ed5945b8efbf9e (patch) | |
tree | 28ebaaee56786cd9199e0e5802d166474d30d1e3 /crypto/algapi.c | |
parent | 8db089d1b08209c04cd130e49fa4796b5513ce7f (diff) | |
parent | d37e44969e60dc652fdbaf4397d5436e07c967af (diff) |
Merge branch 'master' into upstream
Sync with Linus' tree so that we don't have build falures
due to Quanta 3001 ID reshuffling.
Diffstat (limited to 'crypto/algapi.c')
-rw-r--r-- | crypto/algapi.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/crypto/algapi.c b/crypto/algapi.c index 056571b8544..c3b9bfeeb7f 100644 --- a/crypto/algapi.c +++ b/crypto/algapi.c @@ -24,22 +24,6 @@ static LIST_HEAD(crypto_template_list); -void crypto_larval_error(const char *name, u32 type, u32 mask) -{ - struct crypto_alg *alg; - - alg = crypto_alg_lookup(name, type, mask); - - if (alg) { - if (crypto_is_larval(alg)) { - struct crypto_larval *larval = (void *)alg; - complete_all(&larval->completion); - } - crypto_mod_put(alg); - } -} -EXPORT_SYMBOL_GPL(crypto_larval_error); - static inline int crypto_set_driver_name(struct crypto_alg *alg) { static const char suffix[] = "-generic"; @@ -295,7 +279,6 @@ found: continue; larval->adult = alg; - complete_all(&larval->completion); continue; } |