Skip to content

Commit

Permalink
crypto: api - Make crypto_alg_lookup static
Browse files Browse the repository at this point in the history
The function crypto_alg_lookup is only usd within the crypto API
and should be not be exported to the modules.  This patch marks
it as a static function.

Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
herbertx committed Mar 30, 2018
1 parent 4989d4f commit 3ca1e99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crypto/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ static struct crypto_alg *crypto_larval_wait(struct crypto_alg *alg)
return alg;
}

struct crypto_alg *crypto_alg_lookup(const char *name, u32 type, u32 mask)
static struct crypto_alg *crypto_alg_lookup(const char *name, u32 type,
u32 mask)
{
struct crypto_alg *alg;

Expand All @@ -203,7 +204,6 @@ struct crypto_alg *crypto_alg_lookup(const char *name, u32 type, u32 mask)

return alg;
}
EXPORT_SYMBOL_GPL(crypto_alg_lookup);

static struct crypto_alg *crypto_larval_lookup(const char *name, u32 type,
u32 mask)
Expand Down
1 change: 0 additions & 1 deletion crypto/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ static inline unsigned int crypto_compress_ctxsize(struct crypto_alg *alg)
}

struct crypto_alg *crypto_mod_get(struct crypto_alg *alg);
struct crypto_alg *crypto_alg_lookup(const char *name, u32 type, u32 mask);
struct crypto_alg *crypto_alg_mod_lookup(const char *name, u32 type, u32 mask);

int crypto_init_cipher_ops(struct crypto_tfm *tfm);
Expand Down

0 comments on commit 3ca1e99

Please sign in to comment.