* [PATCH v2 0/2] iio: temperature: tmp117: Support the TMP119 sensor
@ 2026-06-08 16:00 Romain Gantois
2026-06-08 16:00 ` [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119 Romain Gantois
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Romain Gantois @ 2026-06-08 16:00 UTC (permalink / raw)
To: Puranjay Mohan, Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, Rob Herring, Krzysztof Kozlowski, Conor Dooley
Cc: Thomas Petazzoni, Wil Stark, linux-iio, linux-kernel, devicetree,
Romain Gantois
Hello everyone,
This is version two of my series which adds support for the TMP119, which has
an identical programming model to the TMP117, but slightly different specs and
electrical characteristics.
Best Regards,
Romain
Signed-off-by: Romain Gantois <romain.gantois@bootlin.com>
---
Changes in v2:
- Used ti,tmp117 as a fallback compatible
- Made sure the correct IIO device name was exposed to userspace
- Link to v1: https://patch.msgid.link/20260605-tmp119-v1-0-349f45f17d12@bootlin.com
To: Puranjay Mohan <puranjay@kernel.org>
To: Jonathan Cameron <jic23@kernel.org>
To: David Lechner <dlechner@baylibre.com>
To: Nuno Sá <nuno.sa@analog.com>
To: Andy Shevchenko <andy@kernel.org>
To: Rob Herring <robh@kernel.org>
To: Krzysztof Kozlowski <krzk+dt@kernel.org>
To: Conor Dooley <conor+dt@kernel.org>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: linux-iio@vger.kernel.org
Cc: devicetree@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
Romain Gantois (1):
dt-bindings: iio: ti,tmp117: add binding for the TMP119
Wil Stark (1):
iio: temperature: tmp117: add TI TMP119 support
.../devicetree/bindings/iio/temperature/ti,tmp117.yaml | 16 +++++++++++-----
drivers/iio/temperature/tmp117.c | 10 ++++++++++
2 files changed, 21 insertions(+), 5 deletions(-)
---
base-commit: ddd664bbff63e09e7a7f9acae9c43605d4cf185f
change-id: 20260605-tmp119-662d21e4d317
Best regards,
--
Romain Gantois <romain.gantois@bootlin.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119
2026-06-08 16:00 [PATCH v2 0/2] iio: temperature: tmp117: Support the TMP119 sensor Romain Gantois
@ 2026-06-08 16:00 ` Romain Gantois
2026-06-08 17:12 ` Conor Dooley
2026-06-08 17:22 ` Rob Herring (Arm)
2026-06-08 16:00 ` [PATCH v2 2/2] iio: temperature: tmp117: add TI TMP119 support Romain Gantois
2026-06-08 17:24 ` [PATCH v2 0/2] iio: temperature: tmp117: Support the TMP119 sensor Jonathan Cameron
2 siblings, 2 replies; 8+ messages in thread
From: Romain Gantois @ 2026-06-08 16:00 UTC (permalink / raw)
To: Puranjay Mohan, Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, Rob Herring, Krzysztof Kozlowski, Conor Dooley
Cc: Thomas Petazzoni, Wil Stark, linux-iio, linux-kernel, devicetree,
Romain Gantois
The TMP119 has the same register layout as the TMP117, and a better local
sensor accuracy. Add a compatible for it.
Use ti,tmp117 as a fallback compatible for ti,tmp119.
Signed-off-by: Romain Gantois <romain.gantois@bootlin.com>
---
.../devicetree/bindings/iio/temperature/ti,tmp117.yaml | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml b/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
index fbba5e934861c..d12dfef315b6c 100644
--- a/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
+++ b/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
@@ -7,19 +7,25 @@ $schema: http://devicetree.org/meta-schemas/core.yaml#
title: TI TMP117 - Digital temperature sensor with integrated NV memory
description: |
- TI TMP116/117 - Digital temperature sensor with integrated NV memory that
- supports I2C interface.
+ TI TMP116/117/119 - Digital temperature sensor with integrated NV memory
+ that supports I2C interface.
https://www.ti.com/lit/gpn/tmp116
https://www.ti.com/lit/gpn/tmp117
+ https://www.ti.com/lit/gpn/tmp119
maintainers:
- Puranjay Mohan <puranjay12@gmail.com>
properties:
compatible:
- enum:
- - ti,tmp116
- - ti,tmp117
+ oneOf:
+ - enum:
+ - ti,tmp116
+ - ti,tmp117
+ - items:
+ - enum:
+ - ti,tmp119
+ - const: ti,tmp117
reg:
maxItems: 1
--
2.54.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 2/2] iio: temperature: tmp117: add TI TMP119 support
2026-06-08 16:00 [PATCH v2 0/2] iio: temperature: tmp117: Support the TMP119 sensor Romain Gantois
2026-06-08 16:00 ` [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119 Romain Gantois
@ 2026-06-08 16:00 ` Romain Gantois
2026-06-08 16:04 ` sashiko-bot
2026-06-08 17:24 ` [PATCH v2 0/2] iio: temperature: tmp117: Support the TMP119 sensor Jonathan Cameron
2 siblings, 1 reply; 8+ messages in thread
From: Romain Gantois @ 2026-06-08 16:00 UTC (permalink / raw)
To: Puranjay Mohan, Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, Rob Herring, Krzysztof Kozlowski, Conor Dooley
Cc: Thomas Petazzoni, Wil Stark, linux-iio, linux-kernel, devicetree,
Romain Gantois
From: Wil Stark <wil_stark@keysight.com>
Add support for the TMP119 temperature sensor, which has the same
programming model as the TMP117.
Signed-off-by: Wil Stark <wil_stark@keysight.com>
[rgantois: Rebased from v6.6.58 to v7.1.0-rc6]
[rgantois: Commit log]
Signed-off-by: Romain Gantois <romain.gantois@bootlin.com>
---
drivers/iio/temperature/tmp117.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/iio/temperature/tmp117.c b/drivers/iio/temperature/tmp117.c
index 8972083d903a2..18ad40f3e7361 100644
--- a/drivers/iio/temperature/tmp117.c
+++ b/drivers/iio/temperature/tmp117.c
@@ -38,6 +38,7 @@
#define TMP116_DEVICE_ID 0x1116
#define TMP117_DEVICE_ID 0x0117
+#define TMP119_DEVICE_ID 0x2117
struct tmp117_data {
struct i2c_client *client;
@@ -139,6 +140,12 @@ static const struct tmp11x_info tmp117_channels_info = {
.num_channels = ARRAY_SIZE(tmp117_channels)
};
+static const struct tmp11x_info tmp119_channels_info = {
+ .name = "tmp119",
+ .channels = tmp117_channels,
+ .num_channels = ARRAY_SIZE(tmp117_channels)
+};
+
static const struct iio_info tmp117_info = {
.read_raw = tmp117_read_raw,
.write_raw = tmp117_write_raw,
@@ -170,6 +177,7 @@ static int tmp117_probe(struct i2c_client *client)
match_data = &tmp116_channels_info;
break;
case TMP117_DEVICE_ID:
+ case TMP119_DEVICE_ID:
match_data = &tmp117_channels_info;
break;
default:
@@ -204,6 +212,7 @@ static int tmp117_probe(struct i2c_client *client)
static const struct of_device_id tmp117_of_match[] = {
{ .compatible = "ti,tmp116", .data = &tmp116_channels_info },
{ .compatible = "ti,tmp117", .data = &tmp117_channels_info },
+ { .compatible = "ti,tmp119", .data = &tmp119_channels_info },
{ }
};
MODULE_DEVICE_TABLE(of, tmp117_of_match);
@@ -211,6 +220,7 @@ MODULE_DEVICE_TABLE(of, tmp117_of_match);
static const struct i2c_device_id tmp117_id[] = {
{ "tmp116", (kernel_ulong_t)&tmp116_channels_info },
{ "tmp117", (kernel_ulong_t)&tmp117_channels_info },
+ { "tmp119", (kernel_ulong_t)&tmp119_channels_info },
{ }
};
MODULE_DEVICE_TABLE(i2c, tmp117_id);
--
2.54.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 2/2] iio: temperature: tmp117: add TI TMP119 support
2026-06-08 16:00 ` [PATCH v2 2/2] iio: temperature: tmp117: add TI TMP119 support Romain Gantois
@ 2026-06-08 16:04 ` sashiko-bot
0 siblings, 0 replies; 8+ messages in thread
From: sashiko-bot @ 2026-06-08 16:04 UTC (permalink / raw)
To: Romain Gantois; +Cc: devicetree, conor+dt, robh
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] TMP119 devices are incorrectly assigned `tmp117_channels_info` during hardware probe, resulting in the wrong IIO device name.
--
commit 39dc1c3727920cc7af5409c8327a8bd65880f8b8
Author: Wil Stark <wil_stark@keysight.com>
iio: temperature: tmp117: add TI TMP119 support
This commit adds support for the TMP119 temperature sensor. It introduces
the device ID, channel info, and matching data to allow the tmp117 driver
to handle TMP119 devices.
> diff --git a/drivers/iio/temperature/tmp117.c b/drivers/iio/temperature/tmp117.c
> index 8972083d903a2..18ad40f3e7361 100644
> --- a/drivers/iio/temperature/tmp117.c
> +++ b/drivers/iio/temperature/tmp117.c
[ ... ]
> @@ -170,6 +177,7 @@ static int tmp117_probe(struct i2c_client *client)
> match_data = &tmp116_channels_info;
> break;
> case TMP117_DEVICE_ID:
> + case TMP119_DEVICE_ID:
> match_data = &tmp117_channels_info;
> break;
[Severity: Medium]
Will this assignment cause TMP119 devices to be registered with the wrong name?
By falling through to the TMP117_DEVICE_ID case, match_data is assigned to
&tmp117_channels_info rather than the newly added tmp119_channels_info.
As a result, TMP119 devices are exposed to userspace in the IIO subsystem
with the name 'tmp117' instead of 'tmp119'. The new tmp119_channels_info
struct appears to be completely bypassed during the hardware probe unless
identification fails and fallback match data is used.
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260608-tmp119-v2-0-30c3537d5097@bootlin.com?part=2
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119
2026-06-08 16:00 ` [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119 Romain Gantois
@ 2026-06-08 17:12 ` Conor Dooley
2026-06-08 17:13 ` Conor Dooley
2026-06-08 17:22 ` Rob Herring (Arm)
1 sibling, 1 reply; 8+ messages in thread
From: Conor Dooley @ 2026-06-08 17:12 UTC (permalink / raw)
To: Romain Gantois
Cc: Puranjay Mohan, Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Thomas Petazzoni, Wil Stark, linux-iio, linux-kernel, devicetree
[-- Attachment #1: Type: text/plain, Size: 1815 bytes --]
On Mon, Jun 08, 2026 at 06:00:24PM +0200, Romain Gantois wrote:
> The TMP119 has the same register layout as the TMP117, and a better local
> sensor accuracy. Add a compatible for it.
>
> Use ti,tmp117 as a fallback compatible for ti,tmp119.
>
> Signed-off-by: Romain Gantois <romain.gantois@bootlin.com>
> ---
> .../devicetree/bindings/iio/temperature/ti,tmp117.yaml | 16 +++++++++++-----
> 1 file changed, 11 insertions(+), 5 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml b/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
> index fbba5e934861c..d12dfef315b6c 100644
> --- a/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
> +++ b/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
> @@ -7,19 +7,25 @@ $schema: http://devicetree.org/meta-schemas/core.yaml#
> title: TI TMP117 - Digital temperature sensor with integrated NV memory
>
> description: |
> - TI TMP116/117 - Digital temperature sensor with integrated NV memory that
> - supports I2C interface.
> + TI TMP116/117/119 - Digital temperature sensor with integrated NV memory
> + that supports I2C interface.
> https://www.ti.com/lit/gpn/tmp116
> https://www.ti.com/lit/gpn/tmp117
> + https://www.ti.com/lit/gpn/tmp119
>
> maintainers:
> - Puranjay Mohan <puranjay12@gmail.com>
>
> properties:
> compatible:
> - enum:
> - - ti,tmp116
> - - ti,tmp117
> + oneOf:
> + - enum:
> + - ti,tmp116
> + - ti,tmp117
> + - items:
> + - enum:
> + - ti,tmp119
> + - const: ti,tmp117
Indent here looks undersized, is that just the diff being weird?
>
> reg:
> maxItems: 1
>
> --
> 2.54.0
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119
2026-06-08 17:12 ` Conor Dooley
@ 2026-06-08 17:13 ` Conor Dooley
0 siblings, 0 replies; 8+ messages in thread
From: Conor Dooley @ 2026-06-08 17:13 UTC (permalink / raw)
To: Romain Gantois
Cc: Puranjay Mohan, Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Thomas Petazzoni, Wil Stark, linux-iio, linux-kernel, devicetree
[-- Attachment #1: Type: text/plain, Size: 2093 bytes --]
On Mon, Jun 08, 2026 at 06:12:06PM +0100, Conor Dooley wrote:
> On Mon, Jun 08, 2026 at 06:00:24PM +0200, Romain Gantois wrote:
> > The TMP119 has the same register layout as the TMP117, and a better local
> > sensor accuracy. Add a compatible for it.
> >
> > Use ti,tmp117 as a fallback compatible for ti,tmp119.
> >
> > Signed-off-by: Romain Gantois <romain.gantois@bootlin.com>
> > ---
> > .../devicetree/bindings/iio/temperature/ti,tmp117.yaml | 16 +++++++++++-----
> > 1 file changed, 11 insertions(+), 5 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml b/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
> > index fbba5e934861c..d12dfef315b6c 100644
> > --- a/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
> > +++ b/Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
> > @@ -7,19 +7,25 @@ $schema: http://devicetree.org/meta-schemas/core.yaml#
> > title: TI TMP117 - Digital temperature sensor with integrated NV memory
> >
> > description: |
> > - TI TMP116/117 - Digital temperature sensor with integrated NV memory that
> > - supports I2C interface.
> > + TI TMP116/117/119 - Digital temperature sensor with integrated NV memory
> > + that supports I2C interface.
> > https://www.ti.com/lit/gpn/tmp116
> > https://www.ti.com/lit/gpn/tmp117
> > + https://www.ti.com/lit/gpn/tmp119
> >
> > maintainers:
> > - Puranjay Mohan <puranjay12@gmail.com>
> >
> > properties:
> > compatible:
> > - enum:
> > - - ti,tmp116
> > - - ti,tmp117
> > + oneOf:
> > + - enum:
> > + - ti,tmp116
> > + - ti,tmp117
> > + - items:
> > + - enum:
> > + - ti,tmp119
> > + - const: ti,tmp117
>
> Indent here looks undersized, is that just the diff being weird?
It's not just the diff. Testing the binding would show you what's wrong.
pw-bot: changes-requested
>
> >
> > reg:
> > maxItems: 1
> >
> > --
> > 2.54.0
> >
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119
2026-06-08 16:00 ` [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119 Romain Gantois
2026-06-08 17:12 ` Conor Dooley
@ 2026-06-08 17:22 ` Rob Herring (Arm)
1 sibling, 0 replies; 8+ messages in thread
From: Rob Herring (Arm) @ 2026-06-08 17:22 UTC (permalink / raw)
To: Romain Gantois
Cc: linux-iio, David Lechner, Wil Stark, Nuno Sá,
Krzysztof Kozlowski, linux-kernel, Jonathan Cameron, Conor Dooley,
Thomas Petazzoni, Andy Shevchenko, Puranjay Mohan, devicetree
On Mon, 08 Jun 2026 18:00:24 +0200, Romain Gantois wrote:
> The TMP119 has the same register layout as the TMP117, and a better local
> sensor accuracy. Add a compatible for it.
>
> Use ti,tmp117 as a fallback compatible for ti,tmp119.
>
> Signed-off-by: Romain Gantois <romain.gantois@bootlin.com>
> ---
> .../devicetree/bindings/iio/temperature/ti,tmp117.yaml | 16 +++++++++++-----
> 1 file changed, 11 insertions(+), 5 deletions(-)
>
My bot found errors running 'make dt_binding_check' on your patch:
yamllint warnings/errors:
./Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml:23:9: [warning] wrong indentation: expected 10 but found 8 (indentation)
./Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml:26:9: [warning] wrong indentation: expected 10 but found 8 (indentation)
./Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml:27:11: [warning] wrong indentation: expected 12 but found 10 (indentation)
dtschema/dtc warnings/errors:
doc reference errors (make refcheckdocs):
See https://patchwork.kernel.org/project/devicetree/patch/20260608-tmp119-v2-1-30c3537d5097@bootlin.com
The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.
If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:
pip3 install dtschema --upgrade
Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 0/2] iio: temperature: tmp117: Support the TMP119 sensor
2026-06-08 16:00 [PATCH v2 0/2] iio: temperature: tmp117: Support the TMP119 sensor Romain Gantois
2026-06-08 16:00 ` [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119 Romain Gantois
2026-06-08 16:00 ` [PATCH v2 2/2] iio: temperature: tmp117: add TI TMP119 support Romain Gantois
@ 2026-06-08 17:24 ` Jonathan Cameron
2 siblings, 0 replies; 8+ messages in thread
From: Jonathan Cameron @ 2026-06-08 17:24 UTC (permalink / raw)
To: Romain Gantois
Cc: Puranjay Mohan, David Lechner, Nuno Sá, Andy Shevchenko,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thomas Petazzoni,
Wil Stark, linux-iio, linux-kernel, devicetree
On Mon, 08 Jun 2026 18:00:23 +0200
Romain Gantois <romain.gantois@bootlin.com> wrote:
> Hello everyone,
>
> This is version two of my series which adds support for the TMP119, which has
> an identical programming model to the TMP117, but slightly different specs and
> electrical characteristics.
>
> Best Regards,
>
> Romain
>
> Signed-off-by: Romain Gantois <romain.gantois@bootlin.com>
Hi Romain
Other than the DT indent thing Conor calls out this looks fine to me.
However, unless the cycle is extended IIO is effectively closed for this
kernel cycle. Anything I queue up now will be targeting 7.3 now.
On the plus side no rush for v3!
Thanks,
Jonathan
> ---
> Changes in v2:
> - Used ti,tmp117 as a fallback compatible
> - Made sure the correct IIO device name was exposed to userspace
> - Link to v1: https://patch.msgid.link/20260605-tmp119-v1-0-349f45f17d12@bootlin.com
>
> To: Puranjay Mohan <puranjay@kernel.org>
> To: Jonathan Cameron <jic23@kernel.org>
> To: David Lechner <dlechner@baylibre.com>
> To: Nuno Sá <nuno.sa@analog.com>
> To: Andy Shevchenko <andy@kernel.org>
> To: Rob Herring <robh@kernel.org>
> To: Krzysztof Kozlowski <krzk+dt@kernel.org>
> To: Conor Dooley <conor+dt@kernel.org>
> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> Cc: linux-iio@vger.kernel.org
> Cc: devicetree@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
>
> ---
> Romain Gantois (1):
> dt-bindings: iio: ti,tmp117: add binding for the TMP119
>
> Wil Stark (1):
> iio: temperature: tmp117: add TI TMP119 support
>
> .../devicetree/bindings/iio/temperature/ti,tmp117.yaml | 16 +++++++++++-----
> drivers/iio/temperature/tmp117.c | 10 ++++++++++
> 2 files changed, 21 insertions(+), 5 deletions(-)
> ---
> base-commit: ddd664bbff63e09e7a7f9acae9c43605d4cf185f
> change-id: 20260605-tmp119-662d21e4d317
>
> Best regards,
> --
> Romain Gantois <romain.gantois@bootlin.com>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-06-08 17:24 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-08 16:00 [PATCH v2 0/2] iio: temperature: tmp117: Support the TMP119 sensor Romain Gantois
2026-06-08 16:00 ` [PATCH v2 1/2] dt-bindings: iio: ti,tmp117: add binding for the TMP119 Romain Gantois
2026-06-08 17:12 ` Conor Dooley
2026-06-08 17:13 ` Conor Dooley
2026-06-08 17:22 ` Rob Herring (Arm)
2026-06-08 16:00 ` [PATCH v2 2/2] iio: temperature: tmp117: add TI TMP119 support Romain Gantois
2026-06-08 16:04 ` sashiko-bot
2026-06-08 17:24 ` [PATCH v2 0/2] iio: temperature: tmp117: Support the TMP119 sensor Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox