iio: imu: adis16480: check ret val for non-zero vs less-than-zero
authorAlexandru Ardelean <alexandru.ardelean@analog.com>
Fri, 1 Nov 2019 09:34:59 +0000 (11:34 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 3 Nov 2019 10:25:43 +0000 (10:25 +0000)
commit92c7529fc1bf3e607ed90c941e55bc244e04a256
tree361d5f63a18539679a1a6f810be0ac5b44471417
parentc754a45455bb1ba759304128063c4325205f22fb
iio: imu: adis16480: 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/adis16480.c