staging: ft1000: do not initialise statics to 0 or NULL

Remove following checkpatch.pl error from ft1000/ft1000-usb/ft1000_debug.c
ERROR: do not initialise statics to 0 or NULL

Signed-off-by: Chen Weixiang <weixiang.chen@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Chen Weixiang 2014-10-19 20:59:44 +08:00 коммит произвёл Greg Kroah-Hartman
Родитель 4baa70f69d
Коммит b7da2d68bb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -38,7 +38,7 @@
#include <linux/debugfs.h> #include <linux/debugfs.h>
#include "ft1000_usb.h" #include "ft1000_usb.h"
static int ft1000_flarion_cnt = 0; static int ft1000_flarion_cnt;
static int ft1000_open(struct inode *inode, struct file *file); static int ft1000_open(struct inode *inode, struct file *file);
static unsigned int ft1000_poll_dev(struct file *file, poll_table *wait); static unsigned int ft1000_poll_dev(struct file *file, poll_table *wait);