lkml.org 
[lkml]   [2021]   [Jul]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v6 01/13] iio: inkern: apply consumer scale on IIO_VAL_INT cases
    Date
    From: Liam Beguin <lvb@xiphos.com>

    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 <lvb@xiphos.com>
    ---
    drivers/iio/inkern.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/iio/inkern.c b/drivers/iio/inkern.c
    index 391a3380a1d1..b752fe5818e7 100644
    --- a/drivers/iio/inkern.c
    +++ b/drivers/iio/inkern.c
    @@ -599,7 +599,7 @@ static int iio_convert_raw_to_processed_unlocked(struct iio_channel *chan,

    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)
    --
    2.30.1.489.g328c10930387
    \
     
     \ /
      Last update: 2021-07-21 05:08    [W:4.029 / U:0.024 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site