Commit 52c899ec authored by YueHaibing's avatar YueHaibing Committed by Herbert Xu

crypto: ccp - Make ccp_register_rsa_alg static

Fix sparse warning:

drivers/crypto/ccp/ccp-crypto-rsa.c:251:5:
 warning: symbol 'ccp_register_rsa_alg' was not declared. Should it be static?
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Acked-by: default avatarGary R Hook <gary.hook@amd.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent cd1af982
...@@ -248,7 +248,8 @@ static struct ccp_rsa_def rsa_algs[] = { ...@@ -248,7 +248,8 @@ static struct ccp_rsa_def rsa_algs[] = {
} }
}; };
int ccp_register_rsa_alg(struct list_head *head, const struct ccp_rsa_def *def) static int ccp_register_rsa_alg(struct list_head *head,
const struct ccp_rsa_def *def)
{ {
struct ccp_crypto_akcipher_alg *ccp_alg; struct ccp_crypto_akcipher_alg *ccp_alg;
struct akcipher_alg *alg; struct akcipher_alg *alg;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment