iio:max517: Report scale as fractional value
authorLars-Peter Clausen <lars@metafoo.de>
Sat, 28 Sep 2013 09:31:00 +0000 (10:31 +0100)
committerJonathan Cameron <jic23@kernel.org>
Tue, 1 Oct 2013 15:19:11 +0000 (16:19 +0100)
Move the complexity of calculating the fixed point scale to the core.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/dac/max517.c

index 83adcbf..d26be14 100644 (file)
@@ -82,15 +82,13 @@ static int max517_read_raw(struct iio_dev *indio_dev,
                           long m)
 {
        struct max517_data *data = iio_priv(indio_dev);
-       unsigned int scale_uv;
 
        switch (m) {
        case IIO_CHAN_INFO_SCALE:
                /* Corresponds to Vref / 2^(bits) */
-               scale_uv = (data->vref_mv[chan->channel] * 1000) >> 8;
-               *val =  scale_uv / 1000000;
-               *val2 = scale_uv % 1000000;
-               return IIO_VAL_INT_PLUS_MICRO;
+               *val = data->vref_mv[chan->channel];
+               *val2 = 8;
+               return IIO_VAL_FRACTIONAL_LOG2;
        default:
                break;
        }