staging:iio:ad7746: 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:13 +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/staging/iio/cdc/ad7746.c

index 75a533b..862d68d 100644 (file)
@@ -656,20 +656,21 @@ static int ad7746_read_raw(struct iio_dev *indio_dev,
                switch (chan->type) {
                case IIO_CAPACITANCE:
                        /* 8.192pf / 2^24 */
-                       *val2 = 488;
                        *val =  0;
+                       *val2 = 488;
+                       ret = IIO_VAL_INT_PLUS_NANO;
                        break;
                case IIO_VOLTAGE:
                        /* 1170mV / 2^23 */
-                       *val2 = 139475;
-                       *val =  0;
+                       *val = 1170;
+                       *val2 = 23;
+                       ret = IIO_VAL_FRACTIONAL_LOG2;
                        break;
                default:
-                       ret =  -EINVAL;
-                       goto out;
+                       ret = -EINVAL;
+                       break;
                }
 
-               ret = IIO_VAL_INT_PLUS_NANO;
                break;
        default:
                ret = -EINVAL;