Skip to content

Commit

Permalink
Staging: comedi: fix initialization of static to 0 in ni_pcidio.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bojan Prtvar authored and Greg Kroah-Hartman committed Aug 23, 2011
1 parent 654e8fb commit 13a9e03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/comedi/drivers/ni_pcidio.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 13a9e03

Please sign in to comment.