aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio
diff options
context:
space:
mode:
authorJonathan Cameron <jic23@kernel.org>2013-02-27 14:10:35 -0500
committerJonathan Cameron <jic23@kernel.org>2013-03-17 15:49:32 -0400
commit2f6a4a44217f2dde7c7976c23eef377e90bfb9c7 (patch)
treee0c6441e0c8d6479a3ffbc20ec85b0f1f15b716a /drivers/iio
parent31311c2a471c5c051391b0ee33fa03723ddd5f76 (diff)
iio:dac:ad5446 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')
-rw-r--r--drivers/iio/dac/ad5446.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iio/dac/ad5446.c b/drivers/iio/dac/ad5446.c
index f5583aedfb59..cae8f6056ac3 100644
--- a/drivers/iio/dac/ad5446.c
+++ b/drivers/iio/dac/ad5446.c
@@ -143,8 +143,8 @@ static const struct iio_chan_spec_ext_info ad5446_ext_info_powerdown[] = {
143 .indexed = 1, \ 143 .indexed = 1, \
144 .output = 1, \ 144 .output = 1, \
145 .channel = 0, \ 145 .channel = 0, \
146 .info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT | \ 146 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
147 IIO_CHAN_INFO_SCALE_SHARED_BIT, \ 147 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
148 .scan_type = IIO_ST('u', (bits), (storage), (shift)), \ 148 .scan_type = IIO_ST('u', (bits), (storage), (shift)), \
149 .ext_info = (ext), \ 149 .ext_info = (ext), \
150} 150}