Message ID | 20240401-ad4111-v1-5-34618a9cc502@analog.com (mailing list archive) |
---|---|
State | Changes Requested |
Headers | show |
Series | Add support for AD411x | expand |
On Mon, Apr 1, 2024 at 10:10 AM Dumitru Ceclan via B4 Relay <devnull+dumitru.ceclan.analog.com@kernel.org> wrote: > > From: Dumitru Ceclan <dumitru.ceclan@analog.com> > > Temperature channel is unique per device, index is not needed. > > Signed-off-by: Dumitru Ceclan <dumitru.ceclan@analog.com> > --- This breaks userspace, so the commit message should explain why it is safe to do this (e.g. driver hasn't reached mainline yet, so won't break existing users since there are none).
diff --git a/drivers/iio/adc/ad7173.c b/drivers/iio/adc/ad7173.c index bf5a5b384fe2..9526585e6929 100644 --- a/drivers/iio/adc/ad7173.c +++ b/drivers/iio/adc/ad7173.c @@ -797,7 +797,6 @@ static const struct iio_info ad7173_info = { static const struct iio_chan_spec ad7173_channel_template = { .type = IIO_VOLTAGE, - .indexed = 1, .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE), .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ),