mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 01:36:52 +09:00
Staging: comedi: addi-data: don't initialize a static variable to 0
In hwdrv_apci1564.c, one static variable is zero initialized. This is unneeded and redundant, so we remove the initialization. Signed-off-by: Chase Southwood <chase.southwood@yahoo.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
614bd02fc0
commit
6777877c4f
@@ -100,7 +100,7 @@ This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
#define APCI1564_TCW_WARN_TIMEBASE 28
|
||||
|
||||
/* Global variables */
|
||||
static unsigned int ui_InterruptStatus_1564 = 0;
|
||||
static unsigned int ui_InterruptStatus_1564;
|
||||
static unsigned int ui_InterruptData, ui_Type;
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user