summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMark Hounschell <markh@compro.net>2014-04-24 10:33:58 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-05-16 12:16:58 -0700
commit45c44ddd0158ba2219c48ce48fe60f3a33b933bd (patch)
tree02f69dde4ed6ad05df5917baf4829a2de16bfd7e /drivers
parent630b2abf9cee48d5db766a4241caa0132b92de09 (diff)
staging: dgap: fix sparse warning about dgap_poll_lock
This patch fixes a sparse warning: warning: symbol 'dgap_poll_lock' was not declared. Should it be static? Signed-off-by: Mark Hounschell <markh@compro.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/dgap/dgap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c
index 67e4adf1dba..54ce657d6f3 100644
--- a/drivers/staging/dgap/dgap.c
+++ b/drivers/staging/dgap/dgap.c
@@ -226,7 +226,7 @@ static uint dgap_count = 500;
/*
* Poller stuff
*/
-DEFINE_SPINLOCK(dgap_poll_lock); /* Poll scheduling lock */
+static DEFINE_SPINLOCK(dgap_poll_lock); /* Poll scheduling lock */
static ulong dgap_poll_time; /* Time of next poll */
static uint dgap_poll_stop; /* Used to tell poller to stop */
static struct timer_list dgap_poll_timer;