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:
committed by
Greg Kroah-Hartman
parent
654e8fb522
commit
13a9e03c0c
@@ -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);
|
||||
|
Reference in New Issue
Block a user