staging:iio:accel:adis16204 fix bug in channel modifier handling
authorJonathan Cameron <jic23@kernel.org>
Sat, 5 May 2012 09:41:25 +0000 (10:41 +0100)
committerJonathan Cameron <jic23@kernel.org>
Sat, 30 Jun 2012 09:12:33 +0000 (10:12 +0100)
Will result in the correct scale value for the x axis.

Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Acked-by: Michael Hennerich <michael.hennerich@analog.com>
drivers/staging/iio/accel/adis16204_core.c

index ac9d95e..457982b 100644 (file)
@@ -381,7 +381,7 @@ static int adis16204_read_raw(struct iio_dev *indio_dev,
                        return IIO_VAL_INT_PLUS_MICRO;
                case IIO_ACCEL:
                        *val = 0;
-                       if (chan->channel == 'x')
+                       if (chan->channel2 == IIO_MOD_X)
                                *val2 = 17125;
                        else
                                *val2 = 8407;