diff mbox series

[13/23] iio: adc: ti-ads1119: make use of iio_get_masklength()

Message ID 20240726-dev-iio-masklength-private3-v1-13-82913fc0fb87@analog.com (mailing list archive)
State Accepted
Headers show
Series iio: make masklength __private (final round) | expand

Commit Message

Nuno Sa via B4 Relay July 26, 2024, 8:23 a.m. UTC
From: Nuno Sa <nuno.sa@analog.com>

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@analog.com>
---
 drivers/iio/adc/ti-ads1119.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

João Paulo Gonçalves July 28, 2024, 7:55 p.m. UTC | #1
On Fri, Jul 26, 2024 at 10:23:05AM +0200, Nuno Sa via B4 Relay wrote:
> From: Nuno Sa <nuno.sa@analog.com>
> 
> 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@analog.com>
> ---
>  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@gmail.com>

Best Regards,
João Paulo
diff mbox series

Patch

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) {