diff options
author | Angus Gibson <darthshrine@gmail.com> | 2014-04-07 12:29:30 +1000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-05-15 13:48:36 -0700 |
commit | 77a6f000a1a22d295b87a1a767ffe75b98f1775f (patch) | |
tree | e521605339f6dccb51fc20487d95ee9756a67d40 /drivers | |
parent | 248b6a67567778123bf635945659e64cfe272e3b (diff) | |
download | linux-77a6f000a1a22d295b87a1a767ffe75b98f1775f.tar.gz linux-77a6f000a1a22d295b87a1a767ffe75b98f1775f.tar.bz2 linux-77a6f000a1a22d295b87a1a767ffe75b98f1775f.zip |
staging: ft1000: remove explicit static initialisation
Fix checkpatch.pl error where a static variable was explicitly
initialised to false
Signed-off-by: Angus Gibson <darthshrine@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/ft1000/ft1000-usb/ft1000_usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/ft1000/ft1000-usb/ft1000_usb.c b/drivers/staging/ft1000/ft1000-usb/ft1000_usb.c index e40763e60dbd..0a2544c78292 100644 --- a/drivers/staging/ft1000/ft1000-usb/ft1000_usb.c +++ b/drivers/staging/ft1000/ft1000-usb/ft1000_usb.c @@ -35,7 +35,7 @@ static struct usb_device_id id_table[] = { MODULE_DEVICE_TABLE(usb, id_table); -static bool gPollingfailed = false; +static bool gPollingfailed; static int ft1000_poll_thread(void *arg) { int ret; |