diff options
-rw-r--r-- | drivers/iio/dac/ad5624r_spi.c | 4 |
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, \ |