]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
iio: Fix iio_multiply_value use in iio_read_channel_processed_scale
authorSvyatoslav Ryhel <clamor95@gmail.com>
Thu, 16 Apr 2026 11:14:42 +0000 (14:14 +0300)
committerJonathan Cameron <jic23@kernel.org>
Tue, 28 Apr 2026 15:36:09 +0000 (16:36 +0100)
commitbb21ee31f5753a7972148798fd7dfb841dd33bdb
tree41f9dcfac1c82c8466ed05fcbfc4b35ddad532c9
parent761e8b489e6cf166c574034b70637f8a7eadd0ee
iio: Fix iio_multiply_value use in iio_read_channel_processed_scale

The function iio_multiply_value returns IIO_VAL_INT (1) on success or a
negative error number on failure, while iio_read_channel_processed_scale
should return an error code or 0. This creates a situation where the
expected result is treated as an error. Fix this by checking the
iio_multiply_value result separately, instead of passing it as a return
value.

Fixes: 05f958d003c9 ("iio: Improve iio_read_channel_processed_scale() precision")
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
Reviewed-by: Hans de Goede <johannes.goede@oss.qualcomm.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/inkern.c