lkml.org 
[lkml]   [2022]   [Apr]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 5.4 025/475] iio: inkern: apply consumer scale on IIO_VAL_INT cases
    Date
    From: Liam Beguin <liambeguin@gmail.com>

    commit 1bca97ff95c732a516ebb68da72814194980e0a5 upstream.

    When a consumer calls iio_read_channel_processed() and the channel has
    an integer scale, the scale channel scale is applied and the processed
    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: 48e44ce0f881 ("iio:inkern: Add function to read the processed value")
    Signed-off-by: Liam Beguin <liambeguin@gmail.com>
    Reviewed-by: Peter Rosin <peda@axentia.se>
    Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
    Link: https://lore.kernel.org/r/20220108205319.2046348-2-liambeguin@gmail.com
    Cc: <Stable@vger.kernel.org>
    Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    ---
    drivers/iio/inkern.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    --- a/drivers/iio/inkern.c
    +++ b/drivers/iio/inkern.c
    @@ -609,7 +609,7 @@ static int iio_convert_raw_to_processed_

    switch (scale_type) {
    case IIO_VAL_INT:
    - *processed = raw64 * scale_val;
    + *processed = raw64 * scale_val * scale;
    break;
    case IIO_VAL_INT_PLUS_MICRO:
    if (scale_val2 < 0)

    \
     
     \ /
      Last update: 2022-04-14 16:15    [W:2.396 / U:0.084 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site