diff options
author | Jonathan Cameron <jic23@kernel.org> | 2013-12-11 13:45:00 -0500 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2013-12-17 16:02:46 -0500 |
commit | 4974600bbfc0f63810ba90538b18f094574cdf79 (patch) | |
tree | 3d8e5a4d3603faff7ef957b246b3f8d75f2303f7 /drivers/iio/dac/ad5624r_spi.c | |
parent | 73d3a775832d477bc8128cadde4b307164cf6dec (diff) |
iio:dac:ad5624r replaces IIO_ST macro with explicit entries to struct scan_type
IIO_ST is going away as it is a pain to maintain.
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.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/iio/dac/ad5624r_spi.c b/drivers/iio/dac/ad5624r_spi.c index 774dd968145b..e8199cce2aea 100644 --- a/drivers/iio/dac/ad5624r_spi.c +++ b/drivers/iio/dac/ad5624r_spi.c | |||
@@ -176,7 +176,12 @@ static const struct iio_chan_spec_ext_info ad5624r_ext_info[] = { | |||
176 | .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \ | 176 | .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \ |
177 | .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \ | 177 | .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \ |
178 | .address = (_chan), \ | 178 | .address = (_chan), \ |
179 | .scan_type = IIO_ST('u', (_bits), 16, 16 - (_bits)), \ | 179 | .scan_type = { \ |
180 | .sign = 'u', \ | ||
181 | .realbits = (_bits), \ | ||
182 | .storagebits = 16, \ | ||
183 | .shift = 16 - (_bits), \ | ||
184 | }, \ | ||
180 | .ext_info = ad5624r_ext_info, \ | 185 | .ext_info = ad5624r_ext_info, \ |
181 | } | 186 | } |
182 | 187 | ||