mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
staging: ft1000-pcmcia: Don't initialise static to 0
This fixes the following checkpatch.pl error: ERROR: do not initialise statics to 0 or NULL Signed-off-by: Catalina Mocanu <catalina.mocanu@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6a7cbc38ad
commit
13e55e4947
1 changed files with 2 additions and 2 deletions
|
@ -62,8 +62,8 @@ static struct timer_list poll_timer = {
|
|||
|
||||
static u16 cmdbuffer[1024];
|
||||
static u8 tempbuffer[1600];
|
||||
static u8 ft1000_card_present = 0;
|
||||
static u8 flarion_ft1000_cnt = 0;
|
||||
static u8 ft1000_card_present;
|
||||
static u8 flarion_ft1000_cnt;
|
||||
|
||||
static irqreturn_t ft1000_interrupt(int irq, void *dev_id);
|
||||
static void ft1000_enable_interrupts(struct net_device *dev);
|
||||
|
|
Loading…
Reference in a new issue