staging: silicom: fix sparse warning for static variable
authorJames A Shackleford <shack@linux.com>
Sun, 1 Jun 2014 23:34:28 +0000 (19:34 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 1 Jun 2014 23:46:56 +0000 (16:46 -0700)
This patch fixes the following sparse warning in bpctl_mod.c:
warning: symbol 'bpvm_lock' was not declared. Should it be static?

Signed-off-by: James A Shackleford <shack@linux.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/silicom/bpctl_mod.c

index f74b5e711609d2bb2ead5716bf988c1ca8b2325a..765fce84d9dd15494794b46dc282c5df6bf731f9 100644 (file)
@@ -41,7 +41,7 @@ MODULE_AUTHOR("Anna Lukin, annal@silicom.co.il");
 MODULE_LICENSE("GPL");
 MODULE_DESCRIPTION(BP_MOD_DESCR);
 MODULE_VERSION(BP_MOD_VER);
-spinlock_t bpvm_lock;
+static spinlock_t bpvm_lock;
 
 #define unlock_bpctl()                                 \
        up(&bpctl_sema);