iio: imu: adis: check ret val for non-zero vs less-than-zero
authorAlexandru Ardelean <alexandru.ardelean@analog.com>
Fri, 1 Nov 2019 09:35:00 +0000 (11:35 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 3 Nov 2019 10:29:25 +0000 (10:29 +0000)
The ADIS library functions return zero on success, and negative values for
error. Positive values aren't returned, but we only care about the success
value (which is zero).

This change is mostly needed so that the compiler won't make any inferences
about some about values being potentially un-initialized. This only
triggers after making some functions inline, because the compiler can
better follow return paths.

Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/imu/adis.c

index 1631c255deab1a662c60dcaeff64407c46630961..dc2f9e061d983c6006ac74584d5a04b3403d5b39 100644 (file)
@@ -286,7 +286,7 @@ int adis_check_status(struct adis *adis)
        int i;
 
        ret = adis_read_reg_16(adis, adis->data->diag_stat_reg, &status);
-       if (ret < 0)
+       if (ret)
                return ret;
 
        status &= adis->data->status_error_mask;