]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
iio:accel:kxsd9 move to info_mask_(shared_by_type/separate)
authorJonathan Cameron <jic23@kernel.org>
Wed, 27 Feb 2013 19:03:36 +0000 (19:03 +0000)
committerJonathan Cameron <jic23@kernel.org>
Sun, 17 Mar 2013 19:49:21 +0000 (19:49 +0000)
The original info_mask is going away in favour of the broken out versions.

Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/accel/kxsd9.c

index c2229a521ab9b58f7c902e0b7f1e0f21f94082ee..7229645bf1d74ca58b500218be9d1f2639d42d53 100644 (file)
@@ -177,8 +177,8 @@ error_ret:
                .type = IIO_ACCEL,                                      \
                .modified = 1,                                          \
                .channel2 = IIO_MOD_##axis,                             \
-               .info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT |           \
-                       IIO_CHAN_INFO_SCALE_SHARED_BIT,                 \
+               .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),           \
+               .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE),   \
                .address = KXSD9_REG_##axis,                            \
        }
 
@@ -186,7 +186,7 @@ static const struct iio_chan_spec kxsd9_channels[] = {
        KXSD9_ACCEL_CHAN(X), KXSD9_ACCEL_CHAN(Y), KXSD9_ACCEL_CHAN(Z),
        {
                .type = IIO_VOLTAGE,
-               .info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT,
+               .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),
                .indexed = 1,
                .address = KXSD9_REG_AUX,
        }