[PATCH] iio: adc: ad7124: add ext attributes to temperature channel

David Lechner posted 1 patch 1 week, 1 day ago
drivers/iio/adc/ad7124.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] iio: adc: ad7124: add ext attributes to temperature channel
Posted by David Lechner 1 week, 1 day ago
Use the same .ext_info for the temperature channel as for the voltage
channels. In the ADC, these all go though a mux to select the source
and otherwise operate the same.

These attributes probably won't be used much, but since it is trivial
to add this, we might as well include them.

Signed-off-by: David Lechner <dlechner@baylibre.com>
---
 drivers/iio/adc/ad7124.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/iio/adc/ad7124.c b/drivers/iio/adc/ad7124.c
index 374e39736584f55c1290db3e257dff2c60f884d2..7ed31399a875b76be08491f56acff55032c95ced 100644
--- a/drivers/iio/adc/ad7124.c
+++ b/drivers/iio/adc/ad7124.c
@@ -1348,6 +1348,7 @@ static int ad7124_parse_channel_config(struct iio_dev *indio_dev,
 			},
 			.address = num_channels,
 			.scan_index = num_channels,
+			.ext_info = ad7124_calibsys_ext_info,
 		};
 	}
 

---
base-commit: 411e8b72c181e4f49352c12ced0fd8426eb683aa
change-id: 20250923-iio-adc-ad7124-add-ext-attributes-to-temperature-channel-dd963150dea9

Best regards,
-- 
David Lechner <dlechner@baylibre.com>
Re: [PATCH] iio: adc: ad7124: add ext attributes to temperature channel
Posted by Jonathan Cameron 4 days, 6 hours ago
On Tue, 23 Sep 2025 15:33:18 -0500
David Lechner <dlechner@baylibre.com> wrote:

> Use the same .ext_info for the temperature channel as for the voltage
> channels. In the ADC, these all go though a mux to select the source
> and otherwise operate the same.
> 
> These attributes probably won't be used much, but since it is trivial
> to add this, we might as well include them.
> 
> Signed-off-by: David Lechner <dlechner@baylibre.com>
Seems unlikely this with clash with the fixes in flight so
applied to the testing branch of iio.git

Thanks,

Jonathan

> ---
>  drivers/iio/adc/ad7124.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/iio/adc/ad7124.c b/drivers/iio/adc/ad7124.c
> index 374e39736584f55c1290db3e257dff2c60f884d2..7ed31399a875b76be08491f56acff55032c95ced 100644
> --- a/drivers/iio/adc/ad7124.c
> +++ b/drivers/iio/adc/ad7124.c
> @@ -1348,6 +1348,7 @@ static int ad7124_parse_channel_config(struct iio_dev *indio_dev,
>  			},
>  			.address = num_channels,
>  			.scan_index = num_channels,
> +			.ext_info = ad7124_calibsys_ext_info,
>  		};
>  	}
>  
> 
> ---
> base-commit: 411e8b72c181e4f49352c12ced0fd8426eb683aa
> change-id: 20250923-iio-adc-ad7124-add-ext-attributes-to-temperature-channel-dd963150dea9
> 
> Best regards,