mirror of https://gitee.com/openkylin/linux.git
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>
This commit is contained in:
parent
248b6a6756
commit
77a6f000a1
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue