1
0
Fork 0

crypto: inside-secure - make function safexcel_try_push_requests static

The function safexcel_try_push_requests  is local to the source and does
not need to be in global scope, so make it static.

Cleans up sparse warning:
symbol 'safexcel_try_push_requests' was not declared. Should it be static?

Signed-off-by: Colin Ian King <colin.king@canonical.com>
[Antoine: fixed alignment]
Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
hifive-unleashed-5.1
Colin Ian King 2018-01-16 08:41:58 +01:00 committed by Herbert Xu
parent 6e36719fbe
commit 059bfd1171
1 changed files with 2 additions and 2 deletions

View File

@ -432,8 +432,8 @@ static int safexcel_hw_init(struct safexcel_crypto_priv *priv)
}
/* Called with ring's lock taken */
int safexcel_try_push_requests(struct safexcel_crypto_priv *priv, int ring,
int reqs)
static int safexcel_try_push_requests(struct safexcel_crypto_priv *priv,
int ring, int reqs)
{
int coal = min_t(int, reqs, EIP197_MAX_BATCH_SZ);