]> Pileus Git - ~andy/linux/commitdiff
Staging: ft1000: Fix assignment of bool to non-0/1 constant in ft1000_usb.c
authorRashika Kheria <rashika.kheria@gmail.com>
Sun, 27 Oct 2013 14:19:38 +0000 (19:49 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Oct 2013 22:00:34 +0000 (15:00 -0700)
This patch fixes the following coccinelle error in ft1000-usb/ft1000_usb.c-
drivers/staging/ft1000/ft1000-usb/ft1000_usb.c:50:4-18: ERROR: Assignment of bool to non-0/1 constant
drivers/staging/ft1000/ft1000-usb/ft1000_usb.c:174:1-15: ERROR: Assignment of bool to non-0/1 constant
drivers/staging/ft1000/ft1000-usb/ft1000_usb.c:39:12-26: ERROR: Assignment of bool to non-0/1 constant

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Lisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ft1000/ft1000-usb/ft1000_usb.c

index 29a7cd23845d4a6b578f977c6a8fc169b19f7c31..a8dd1e54878cb7a3a3914c097896bd6377216b8f 100644 (file)
@@ -36,7 +36,7 @@ static struct usb_device_id id_table[] = {
 
 MODULE_DEVICE_TABLE(usb, id_table);
 
-static bool gPollingfailed = FALSE;
+static bool gPollingfailed = false;
 static int ft1000_poll_thread(void *arg)
 {
        int ret;
@@ -47,7 +47,7 @@ static int ft1000_poll_thread(void *arg)
                        ret = ft1000_poll(arg);
                        if (ret != STATUS_SUCCESS) {
                                DEBUG("ft1000_poll_thread: polling failed\n");
-                               gPollingfailed = TRUE;
+                               gPollingfailed = true;
                        }
                }
        }
@@ -171,7 +171,7 @@ static int ft1000_probe(struct usb_interface *interface,
                goto err_load;
        }
 
-       gPollingfailed = FALSE;
+       gPollingfailed = false;
        ft1000dev->pPollThread =
            kthread_run(ft1000_poll_thread, ft1000dev, "ft1000_poll");