Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13a9e03c authored by Bojan Prtvar's avatar Bojan Prtvar Committed by Greg Kroah-Hartman
Browse files

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: default avatarBojan Prtvar <prtvar.b@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 654e8fb5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);