Staging: comedi: fix initialization of static to 0 in ni_pcidio.c

This patch removes initialization of static to 0 or NULL error found
by checkpatch.pl tool

Signed-off-by: Bojan Prtvar <prtvar.b@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Bojan Prtvar 2011-07-19 20:19:39 +02:00 committed by Greg Kroah-Hartman
parent 654e8fb522
commit 13a9e03c0c

View file

@ -688,7 +688,7 @@ static void ni_pcidio_print_status(unsigned int flags)
static void debug_int(struct comedi_device *dev)
{
int a, b;
static int n_int = 0;
static int n_int;
struct timeval tv;
do_gettimeofday(&tv);