aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio
diff options
context:
space:
mode:
authorJonathan Cameron <jic23@kernel.org>2013-12-11 13:45:00 -0500
committerJonathan Cameron <jic23@kernel.org>2013-12-17 15:56:33 -0500
commit81d49bc622595e6c3c5a92e851ac234f0eb96b68 (patch)
tree9c37d63345f397caee55ba1db356628f9e807143 /drivers/iio
parente5687979eb287d68d1d3b47e9b025915659e14db (diff)
iio:dac:ad5064 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')
-rw-r--r--drivers/iio/dac/ad5064.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/iio/dac/ad5064.c b/drivers/iio/dac/ad5064.c
index cb9c6366032c..f03b92fd3803 100644
--- a/drivers/iio/dac/ad5064.c
+++ b/drivers/iio/dac/ad5064.c
@@ -299,7 +299,12 @@ static const struct iio_chan_spec_ext_info ad5064_ext_info[] = {
299 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \ 299 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
300 BIT(IIO_CHAN_INFO_SCALE), \ 300 BIT(IIO_CHAN_INFO_SCALE), \
301 .address = addr, \ 301 .address = addr, \
302 .scan_type = IIO_ST('u', (bits), 16, 20 - (bits)), \ 302 .scan_type = { \
303 .sign = 'u', \
304 .realbits = (bits), \
305 .storagebits = 16, \
306 .shift = 20 - bits, \
307 }, \
303 .ext_info = ad5064_ext_info, \ 308 .ext_info = ad5064_ext_info, \
304} 309}
305 310