staging: ft1000-usb: Removed global initialization
authorPeter Karlsson <peter.p.karlsson@svt.se>
Wed, 17 Jun 2015 15:32:11 +0000 (17:32 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 Jun 2015 04:14:30 +0000 (21:14 -0700)
Fix checkpatch error about initialize globals to 0.

Signed-off-by: Peter Karlsson <peter.p.karlsson@svt.se>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ft1000/ft1000-usb/ft1000_debug.c

index a19e3930edce53500af2f242db7848f80735bf44..409266b1a886f7cb6e8136d10f050743f3d168a6 100644 (file)
@@ -55,7 +55,7 @@ struct list_head freercvpool;
 /* lock to arbitrate free buffer list for receive command data */
 spinlock_t free_buff_lock;
 
-int numofmsgbuf = 0;
+int numofmsgbuf;
 
 /*
  * Table of entry-point routines for char device
This page took 0.024694 seconds and 5 git commands to generate.