linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/4] crypto: crypto_user - fix sparse warnings (symbol was not declared, should be static?)
@ 2012-08-28 13:46 Jussi Kivilinna
  2012-08-28 13:46 ` [PATCH 2/4] crypto: camellia-x86_64 - fix sparse warnings (constant is so big) Jussi Kivilinna
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Jussi Kivilinna @ 2012-08-28 13:46 UTC (permalink / raw)
  To: linux-crypto; +Cc: Herbert Xu, David S. Miller

Fix "symbol 'x' was not declared. Should it be static?" sparse warnings.

Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
---
 crypto/crypto_user.c |    2 +-
 crypto/vmac.c        |   10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/crypto/crypto_user.c b/crypto/crypto_user.c
index ba2c611..b590471 100644
--- a/crypto/crypto_user.c
+++ b/crypto/crypto_user.c
@@ -30,7 +30,7 @@
 
 #include "internal.h"
 
-DEFINE_MUTEX(crypto_cfg_mutex);
+static DEFINE_MUTEX(crypto_cfg_mutex);
 
 /* The crypto netlink socket */
 static struct sock *crypto_nlsk;
diff --git a/crypto/vmac.c b/crypto/vmac.c
index 4243905..f2338ca9 100644
--- a/crypto/vmac.c
+++ b/crypto/vmac.c
@@ -38,11 +38,11 @@
  * Constants and masks
  */
 #define UINT64_C(x) x##ULL
-const u64 p64   = UINT64_C(0xfffffffffffffeff);  /* 2^64 - 257 prime  */
-const u64 m62   = UINT64_C(0x3fffffffffffffff);  /* 62-bit mask       */
-const u64 m63   = UINT64_C(0x7fffffffffffffff);  /* 63-bit mask       */
-const u64 m64   = UINT64_C(0xffffffffffffffff);  /* 64-bit mask       */
-const u64 mpoly = UINT64_C(0x1fffffff1fffffff);  /* Poly key mask     */
+static const u64 p64   = UINT64_C(0xfffffffffffffeff);	/* 2^64 - 257 prime  */
+static const u64 m62   = UINT64_C(0x3fffffffffffffff);	/* 62-bit mask       */
+static const u64 m63   = UINT64_C(0x7fffffffffffffff);	/* 63-bit mask       */
+static const u64 m64   = UINT64_C(0xffffffffffffffff);	/* 64-bit mask       */
+static const u64 mpoly = UINT64_C(0x1fffffff1fffffff);	/* Poly key mask     */
 
 #define pe64_to_cpup le64_to_cpup		/* Prefer little endian */
 

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

end of thread, other threads:[~2012-09-06 20:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-28 13:46 [PATCH 1/4] crypto: crypto_user - fix sparse warnings (symbol was not declared, should be static?) Jussi Kivilinna
2012-08-28 13:46 ` [PATCH 2/4] crypto: camellia-x86_64 - fix sparse warnings (constant is so big) Jussi Kivilinna
2012-08-28 13:47 ` [PATCH 3/4] crypto: cast5 - fix sparse warnings (symbol was not declared, should be static?) Jussi Kivilinna
2012-08-28 13:47 ` [PATCH 4/4] crypto: cast6 " Jussi Kivilinna
2012-09-06 20:22 ` [PATCH 1/4] crypto: crypto_user " Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).