Input: raydium_i2c_ts - use true and false for boolean values
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Mon, 6 Aug 2018 22:20:19 +0000 (15:20 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 Apr 2020 15:20:35 +0000 (17:20 +0200)
[ Upstream commit 6cad4e269e25dddd7260a53e9d9d90ba3a3cc35a ]

Return statements in functions returning bool should use true or false
instead of an integer value.

This code was detected with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/input/touchscreen/raydium_i2c_ts.c

index a99fb5cac5a0e189c20360aaba33c6c2ab1ad25f..76cdc145c091299c86e6a5a08c46e8947e52c5c0 100644 (file)
@@ -466,7 +466,7 @@ static bool raydium_i2c_boot_trigger(struct i2c_client *client)
                }
        }
 
-       return 0;
+       return false;
 }
 
 static bool raydium_i2c_fw_trigger(struct i2c_client *client)
@@ -492,7 +492,7 @@ static bool raydium_i2c_fw_trigger(struct i2c_client *client)
                }
        }
 
-       return 0;
+       return false;
 }
 
 static int raydium_i2c_check_path(struct i2c_client *client)