Linux cryptographic layer development
 help / color / mirror / Atom feed
* [PATCH -next] chcr: Fix non static symbol warning
@ 2016-08-22 16:11 Wei Yongjun
  2016-08-24 13:06 ` Herbert Xu
  2016-08-26 14:21 ` [PATCH -next v2] " Wei Yongjun
  0 siblings, 2 replies; 6+ messages in thread
From: Wei Yongjun @ 2016-08-22 16:11 UTC (permalink / raw)
  To: Herbert Xu, David S. Miller, Hariprasad Shenai, Atul Gupta
  Cc: Wei Yongjun, linux-crypto

From: Wei Yongjun <weiyongjun1@huawei.com>

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>
---
 drivers/crypto/chelsio/chcr_algo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/crypto/chelsio/chcr_algo.c b/drivers/crypto/chelsio/chcr_algo.c
index ad8e353..e4ddb92 100644
--- a/drivers/crypto/chelsio/chcr_algo.c
+++ b/drivers/crypto/chelsio/chcr_algo.c
@@ -590,7 +590,7 @@ badkey_err:
 	return -EINVAL;
 }
 
-int cxgb4_is_crypto_q_full(struct net_device *dev, unsigned int idx)
+static int cxgb4_is_crypto_q_full(struct net_device *dev, unsigned int idx)
 {
 	int ret = 0;
 	struct sge_ofld_txq *q;

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-08-26 14:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-22 16:11 [PATCH -next] chcr: Fix non static symbol warning Wei Yongjun
2016-08-24 13:06 ` Herbert Xu
2016-08-24 14:50   ` Wei Yongjun
2016-08-25  4:22     ` Herbert Xu
2016-08-26 14:21 ` [PATCH -next v2] " Wei Yongjun
2016-08-26 14:42   ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox