On Fri, Jul 26, 2024 at 10:23:05AM +0200, Nuno Sa via B4 Relay wrote: > From: Nuno Sa <nuno.sa@xxxxxxxxxx> > > Use iio_get_masklength() to access '.masklength' so it can be annotated > as __private when there are no more direct users of it. > > Signed-off-by: Nuno Sa <nuno.sa@xxxxxxxxxx> > --- > drivers/iio/adc/ti-ads1119.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/iio/adc/ti-ads1119.c b/drivers/iio/adc/ti-ads1119.c > index 630f5d5f9a60..44d9f69c9df3 100644 > --- a/drivers/iio/adc/ti-ads1119.c > +++ b/drivers/iio/adc/ti-ads1119.c > @@ -435,7 +435,7 @@ static int ads1119_triggered_buffer_preenable(struct iio_dev *indio_dev) > int ret; > > index = find_first_bit(indio_dev->active_scan_mask, > - indio_dev->masklength); > + iio_get_masklength(indio_dev)); > > ret = ads1119_set_conv_mode(st, true); > if (ret) > @@ -508,7 +508,7 @@ static irqreturn_t ads1119_trigger_handler(int irq, void *private) > > if (!iio_trigger_using_own(indio_dev)) { > index = find_first_bit(indio_dev->active_scan_mask, > - indio_dev->masklength); > + iio_get_masklength(indio_dev)); > > ret = ads1119_poll_data_ready(st, &indio_dev->channels[index]); > if (ret) { > > -- > 2.45.2 > > Reviewed-by: João Paulo Gonçalves <jpaulo.silvagoncalves@xxxxxxxxx> Best Regards, João Paulo