From: Jonathan Cameron Date: Wed, 27 Feb 2013 19:11:04 +0000 (+0000) Subject: iio:dac:ad5504 move to info_mask_(shared_by_type/separate) X-Git-Tag: v3.10-rc1~192^2~537^2~57 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f3ec5a2dd40c7e3697f3e3d64720e00d8f5cd7bf;p=platform%2Fkernel%2Flinux-3.10.git iio:dac:ad5504 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 Acked-by: Lars-Peter Clausen --- diff --git a/drivers/iio/dac/ad5504.c b/drivers/iio/dac/ad5504.c index e5e5974..139206e 100644 --- a/drivers/iio/dac/ad5504.c +++ b/drivers/iio/dac/ad5504.c @@ -259,8 +259,8 @@ static const struct iio_chan_spec_ext_info ad5504_ext_info[] = { .indexed = 1, \ .output = 1, \ .channel = (_chan), \ - .info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT | \ - IIO_CHAN_INFO_SCALE_SHARED_BIT, \ + .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \ + .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \ .address = AD5504_ADDR_DAC(_chan), \ .scan_type = IIO_ST('u', 12, 16, 0), \ .ext_info = ad5504_ext_info, \