aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/dac/ad5624r_spi.c
diff options
context:
space:
mode:
authorJonathan Cameron <jic23@kernel.org>2013-02-27 14:11:22 -0500
committerJonathan Cameron <jic23@kernel.org>2013-03-17 15:49:32 -0400
commit8b68634861906abff79170fa9f6ae45dd3e760dc (patch)
treefe3e7e1eacb0a4914cc6d202a8832293f6c8e5e9 /drivers/iio/dac/ad5624r_spi.c
parentf3ec5a2dd40c7e3697f3e3d64720e00d8f5cd7bf (diff)
iio:dac:ad5624r move to info_mask_(shared_by_type/separate)
The original info_mask is going away in favour of the broken out versions. Signed-off-by: Jonathan Cameron <jic23@kernel.org> Acked-by: Lars-Peter Clausen <lars@metafoo.de>
Diffstat (limited to 'drivers/iio/dac/ad5624r_spi.c')
-rw-r--r--drivers/iio/dac/ad5624r_spi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iio/dac/ad5624r_spi.c b/drivers/iio/dac/ad5624r_spi.c
index f6e116627b71..bb298aaff321 100644
--- a/drivers/iio/dac/ad5624r_spi.c
+++ b/drivers/iio/dac/ad5624r_spi.c
@@ -174,8 +174,8 @@ static const struct iio_chan_spec_ext_info ad5624r_ext_info[] = {
174 .indexed = 1, \ 174 .indexed = 1, \
175 .output = 1, \ 175 .output = 1, \
176 .channel = (_chan), \ 176 .channel = (_chan), \
177 .info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT | \ 177 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
178 IIO_CHAN_INFO_SCALE_SHARED_BIT, \ 178 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
179 .address = (_chan), \ 179 .address = (_chan), \
180 .scan_type = IIO_ST('u', (_bits), 16, 16 - (_bits)), \ 180 .scan_type = IIO_ST('u', (_bits), 16, 16 - (_bits)), \
181 .ext_info = ad5624r_ext_info, \ 181 .ext_info = ad5624r_ext_info, \