]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
iio:light:lm3533 move to info_mask_(shared_by_type/separate)
authorJonathan Cameron <jic23@kernel.org>
Wed, 27 Feb 2013 19:33:14 +0000 (19:33 +0000)
committerJonathan Cameron <jic23@kernel.org>
Sun, 17 Mar 2013 19:49:36 +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>
cc: Johan Hovold <jhovold@gmail.com>

drivers/iio/light/lm3533-als.c

index 7503012ce9333ddc98ecbd8f25eecaf11345c379..5fa31a4ef82a7289bf3e2d649a2ef08a955635de 100644 (file)
@@ -231,7 +231,7 @@ static int lm3533_als_read_raw(struct iio_dev *indio_dev,
                .channel        = _channel,                             \
                .indexed        = true,                                 \
                .output         = true,                                 \
-               .info_mask      = IIO_CHAN_INFO_RAW_SEPARATE_BIT,       \
+               .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),           \
        }
 
 static const struct iio_chan_spec lm3533_als_channels[] = {
@@ -239,8 +239,8 @@ static const struct iio_chan_spec lm3533_als_channels[] = {
                .type           = IIO_LIGHT,
                .channel        = 0,
                .indexed        = true,
-               .info_mask      = (IIO_CHAN_INFO_AVERAGE_RAW_SEPARATE_BIT |
-                                  IIO_CHAN_INFO_RAW_SEPARATE_BIT),
+               .info_mask_separate = BIT(IIO_CHAN_INFO_AVERAGE_RAW) |
+                                  BIT(IIO_CHAN_INFO_RAW),
        },
        CHANNEL_CURRENT(0),
        CHANNEL_CURRENT(1),