]> git.baikalelectronics.ru Git - kernel.git/commit
iio: gyro: adis16136: check ret val for non-zero vs less-than-zero
authorAlexandru Ardelean <alexandru.ardelean@analog.com>
Fri, 1 Nov 2019 09:34:56 +0000 (11:34 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 3 Nov 2019 10:14:44 +0000 (10:14 +0000)
commite86caf47aaa7781b69255c229eff1c6f30545b34
tree3b0ba63e91eb3bf875c865444022672a68a0cf06
parent68bd9c7eff815dca2e7adfcb46d7d8c94e563148
iio: gyro: adis16136: 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/gyro/adis16136.c