Staging: comedi: addi-data: do not initialize statics to 0 in hwdrv_apci035.c

This patch for hwdrv_apci035.c removes a zero initialization from two
static variables.  Static variables are initialized to zero by default,
so doing so explicitly is not necessary.

Signed-off-by: Chase Southwood <chase.southwood@yahoo.com>
Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Chase Southwood 2014-02-16 02:41:32 -06:00 committed by Greg Kroah-Hartman
parent 6fcd2b697c
commit 55761166cf
1 changed files with 2 additions and 2 deletions

View File

@ -106,8 +106,8 @@ static struct comedi_lrange range_apci035_ai = {
} }
}; };
static int i_WatchdogNbr = 0; static int i_WatchdogNbr;
static int i_Temp = 0; static int i_Temp;
static int i_Flag = 1; static int i_Flag = 1;
/* /*
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+