diff options
author | Carlos Palminha <CARLOS.PALMINHA@synopsys.com> | 2017-08-13 00:45:49 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-08-28 18:25:43 +0300 |
commit | df4c756e5f6bf08bd7bc63bbfd7fa921a855f241 (patch) | |
tree | 79a23d6603c7c44fe6c0f383c18f8ef31f336b58 /drivers/parport/parport_mfc3.c | |
parent | 6979b928cd53613c86dcb8e997abd26a5dcb45d3 (diff) | |
download | linux-df4c756e5f6bf08bd7bc63bbfd7fa921a855f241.tar.xz |
parport: cleanup statics initialization to NULL or 0
based on checkpatch, cleanup the "do not initialise statics to" 0 or NULL.
Signed-off-by: Carlos Palminha <palminha@synopsys.com>
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/parport/parport_mfc3.c')
-rw-r--r-- | drivers/parport/parport_mfc3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parport/parport_mfc3.c b/drivers/parport/parport_mfc3.c index 2f650f68af14..7f4be0e484c7 100644 --- a/drivers/parport/parport_mfc3.c +++ b/drivers/parport/parport_mfc3.c @@ -174,7 +174,7 @@ DPRINTK(KERN_DEBUG "read_status %02x\n", status); return status; } -static int use_cnt = 0; +static int use_cnt; static irqreturn_t mfc3_interrupt(int irq, void *dev_id) { |