Skip to content

Commit

Permalink
iio: inkern: apply consumer scale when no channel scale is available
Browse files Browse the repository at this point in the history
When a consumer calls iio_read_channel_processed() and no channel scale
is available, it's assumed that the scale is one and the raw value is
returned as expected.

On the other hand, if the consumer calls iio_convert_raw_to_processed()
the scaling factor requested by the consumer is not applied.

This for example causes the consumer to process mV when expecting uV.
Make sure to always apply the scaling factor requested by the consumer.

Fixes: adc8ec5 ("iio: inkern: pass through raw values if no scaling")
Signed-off-by: Liam Beguin <[email protected]>
Reviewed-by: Peter Rosin <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Cc: <[email protected]>
Signed-off-by: Jonathan Cameron <[email protected]>
  • Loading branch information
liambeguin authored and jic23 committed Jan 30, 2022
1 parent 1bca97f commit 14b457f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/iio/inkern.c
Original file line number Diff line number Diff line change
Expand Up @@ -607,10 +607,10 @@ static int iio_convert_raw_to_processed_unlocked(struct iio_channel *chan,
IIO_CHAN_INFO_SCALE);
if (scale_type < 0) {
/*
* Just pass raw values as processed if no scaling is
* available.
* If no channel scaling is available apply consumer scale to
* raw value and return.
*/
*processed = raw;
*processed = raw * scale;
return 0;
}

Expand Down

0 comments on commit 14b457f

Please sign in to comment.