OSDN Git Service

iio:inkern: Fix typo/bug in convert raw to processed.
authorMichael Hennerich <michael.hennerich@analog.com>
Mon, 3 Jun 2013 08:04:00 +0000 (09:04 +0100)
committerJonathan Cameron <jic23@kernel.org>
Tue, 4 Jun 2013 17:46:45 +0000 (18:46 +0100)
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/inkern.c

index dca4eed..98ddc32 100644 (file)
@@ -450,7 +450,7 @@ static int iio_convert_raw_to_processed_unlocked(struct iio_channel *chan,
        s64 raw64 = raw;
        int ret;
 
-       ret = iio_channel_read(chan, &offset, NULL, IIO_CHAN_INFO_SCALE);
+       ret = iio_channel_read(chan, &offset, NULL, IIO_CHAN_INFO_OFFSET);
        if (ret == 0)
                raw64 += offset;