Commit 77a6f000 authored by Angus Gibson's avatar Angus Gibson Committed by Greg Kroah-Hartman

staging: ft1000: remove explicit static initialisation

Fix checkpatch.pl error where a static variable was explicitly
initialised to false
Signed-off-by: default avatarAngus Gibson <darthshrine@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 248b6a67
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment