aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/algapi.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2008-08-04 11:44:59 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2008-08-29 15:48:55 +1000
commitc51b6c8102a82239163c8c04e404c7cc2857b4be (patch)
tree58d3a82d5e1662f99f61e05be6375d8e4fa6023d /crypto/algapi.c
parentb6d44341864b50a308f932c39f03fb8ad5efb021 (diff)
downloadkernel_samsung_smdk4412-c51b6c8102a82239163c8c04e404c7cc2857b4be.zip
kernel_samsung_smdk4412-c51b6c8102a82239163c8c04e404c7cc2857b4be.tar.gz
kernel_samsung_smdk4412-c51b6c8102a82239163c8c04e404c7cc2857b4be.tar.bz2
crypto: api - Export crypto_alg_lookup instead of __crypto_alg_lookup
Since the only user of __crypto_alg_lookup is doing exactly what crypto_alg_lookup does, we can now the latter in lieu of the former. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/algapi.c')
-rw-r--r--crypto/algapi.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/crypto/algapi.c b/crypto/algapi.c
index e65cb50..e9154c1 100644
--- a/crypto/algapi.c
+++ b/crypto/algapi.c
@@ -27,9 +27,7 @@ void crypto_larval_error(const char *name, u32 type, u32 mask)
{
struct crypto_alg *alg;
- down_read(&crypto_alg_sem);
- alg = __crypto_alg_lookup(name, type, mask);
- up_read(&crypto_alg_sem);
+ alg = crypto_alg_lookup(name, type, mask);
if (alg) {
if (crypto_is_larval(alg)) {