]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: dgap: Remove some unused code in dgap.c
authorMark Hounschell <markh@compro.net>
Fri, 21 Mar 2014 14:41:10 +0000 (10:41 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 Apr 2014 15:45:48 +0000 (08:45 -0700)
This patch removes some unused code in dgap.c.

Signed-off-by: Mark Hounschell <markh@compro.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgap/dgap.c

index a5fc3c75ed4e11343102ab99b6629ae0a2521979..ea66c9f8db5d6e0ebbfa8f05f3914db5d2047d55 100644 (file)
 
 #include "dgap.h"
 
-#define init_MUTEX(sem)         sema_init(sem, 1)
-#define DECLARE_MUTEX(name)     \
-       struct semaphore name = __SEMAPHORE_INITIALIZER(name, 1)
-
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Digi International, http://www.digi.com");
 MODULE_DESCRIPTION("Driver for the Digi International EPCA PCI based product line");
@@ -245,9 +241,7 @@ static struct board_t *dgap_Board[MAXBOARDS];
 static ulong dgap_poll_counter;
 static char *dgap_config_buf;
 static int dgap_driver_state = DRIVER_INITIALIZED;
-DEFINE_SPINLOCK(dgap_dl_lock);
 static wait_queue_head_t dgap_dl_wait;
-static int dgap_dl_action;
 static int dgap_poll_tick = 20;        /* Poll interval - 20 ms */
 
 /*
@@ -1197,7 +1191,6 @@ static void dgap_init_globals(void)
        init_timer(&dgap_poll_timer);
 
        init_waitqueue_head(&dgap_dl_wait);
-       dgap_dl_action = 0;
 }
 
 /************************************************************************