mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-05-12 10:13:47 +00:00
crypto: ccp - Fix non static symbol warning
Fixes the following sparse warning: drivers/crypto/ccp/ccp-dev.c:62:14: warning: symbol 'ccp_increment_unit_ordinal' was not declared. Should it be static? Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
b6ff2fdd42
commit
dabc7904a7
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ static struct ccp_device *ccp_rr;
|
||||||
|
|
||||||
/* Ever-increasing value to produce unique unit numbers */
|
/* Ever-increasing value to produce unique unit numbers */
|
||||||
static atomic_t ccp_unit_ordinal;
|
static atomic_t ccp_unit_ordinal;
|
||||||
unsigned int ccp_increment_unit_ordinal(void)
|
static unsigned int ccp_increment_unit_ordinal(void)
|
||||||
{
|
{
|
||||||
return atomic_inc_return(&ccp_unit_ordinal);
|
return atomic_inc_return(&ccp_unit_ordinal);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue