]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
iio: imu: adis16460: check ret val for non-zero vs less-than-zero
authorAlexandru Ardelean <alexandru.ardelean@analog.com>
Fri, 1 Nov 2019 09:34:58 +0000 (11:34 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 3 Nov 2019 10:22:39 +0000 (10:22 +0000)
commitc754a45455bb1ba759304128063c4325205f22fb
tree131252cb4672f4b15feab4a079a3a77cbcf2a923
parentfe4b7f917e8fa20c1a9dd2b3f417acd3b063c880
iio: imu: adis16460: check ret val for non-zero vs less-than-zero

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/adis16460.c