]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
iio: chemical: vz89x: fix boolreturn.cocci warnings
authorkbuild test robot <fengguang.wu@intel.com>
Thu, 1 Sep 2016 00:38:38 +0000 (08:38 +0800)
committerJonathan Cameron <jic23@kernel.org>
Sat, 3 Sep 2016 16:49:53 +0000 (17:49 +0100)
drivers/iio/chemical/vz89x.c:119:9-10: WARNING: return of 0/1 in function 'vz89x_measurement_is_valid' with return type bool

 Return statements in functions returning bool should use
 true/false instead of 1/0.
Generated by: scripts/coccinelle/misc/boolreturn.cocci

CC: Matt Ranostay <mranostay@gmail.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/chemical/vz89x.c

index cd3870ead3fd92e17b0dfbc4736a7fd7ffc6d2db..8e0e4415c161566e94678126790aadf863f67185 100644 (file)
@@ -160,7 +160,7 @@ static const struct attribute_group vz89x_attrs_group = {
 static bool vz89x_measurement_is_valid(struct vz89x_data *data)
 {
        if (data->buffer[VZ89X_VOC_SHORT_IDX] == 0)
-               return 1;
+               return true;
 
        return !!(data->buffer[data->chip->read_size - 1] > 0);
 }