diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-08-26 10:21:08 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-27 00:45:07 -0400 |
commit | 73b86bb7033edfae2a25321116427d8cf386bc51 (patch) | |
tree | 67a8f52e0d53c55dd09a4fb81c5547dd71a39dd4 | |
parent | 942e298eba850a866a673fa159774313650ce5cc (diff) |
chcr: Fix non static symbol warning
Fixes the following sparse warning:
drivers/crypto/chelsio/chcr_algo.c:593:5: warning:
symbol 'cxgb4_is_crypto_q_full' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/crypto/chelsio/chcr_algo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/chelsio/chcr_algo.c b/drivers/crypto/chelsio/chcr_algo.c index ad8e353cf897..e4ddb921d7b3 100644 --- a/drivers/crypto/chelsio/chcr_algo.c +++ b/drivers/crypto/chelsio/chcr_algo.c | |||
@@ -590,7 +590,7 @@ badkey_err: | |||
590 | return -EINVAL; | 590 | return -EINVAL; |
591 | } | 591 | } |
592 | 592 | ||
593 | int cxgb4_is_crypto_q_full(struct net_device *dev, unsigned int idx) | 593 | static int cxgb4_is_crypto_q_full(struct net_device *dev, unsigned int idx) |
594 | { | 594 | { |
595 | int ret = 0; | 595 | int ret = 0; |
596 | struct sge_ofld_txq *q; | 596 | struct sge_ofld_txq *q; |