From: Ben Collins <ben.collins@linux.dev>
To: David Lechner <dlechner@baylibre.com>
Cc: "Ben Collins" <bcollins@watter.com>,
"Jonathan Cameron" <jic23@kernel.org>,
"Nuno Sá" <nuno.sa@analog.com>,
"Andy Shevchenko" <andy@kernel.org>,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 4/5] iio: mcp9600: Add support for thermocouple-type
Date: Sat, 16 Aug 2025 22:54:14 -0400 [thread overview]
Message-ID: <2025081622-industrious-dragonfly-ed3cba@boujee-and-buff> (raw)
In-Reply-To: <7cd6f642-b26a-45aa-a2f2-ccb7fbc28b20@baylibre.com>
[-- Attachment #1: Type: text/plain, Size: 1758 bytes --]
On Sat, Aug 16, 2025 at 01:24:24PM -0500, David Lechner wrote:
> On 8/15/25 11:46 AM, Ben Collins wrote:
> > dt-bindings documentation for this driver claims to support
> > thermocouple-type, but the driver does not actually make use of
> > the property.
> >
> > Implement usage of the property to configure the chip for the
> > selected thermocouple-type.
> >
> > Signed-off-by: Ben Collins <bcollins@watter.com>
> > ---
>
> ...
>
> > @@ -453,6 +504,24 @@ static int mcp9600_probe(struct i2c_client *client)
> > data = iio_priv(indio_dev);
> > data->client = client;
> >
> > + /* Accept type from dt with default of Type-K. */
>
> We still also need a dt-bindings patch to specify the default there as well.
The existing bindings file for this already states type-k is the
default. Is there something else it needs?
> > + data->thermocouple_type = THERMOCOUPLE_TYPE_K;
> > + ret = device_property_read_u32(&client->dev, "thermocouple-type",
> > + &data->thermocouple_type);
> > + if (ret < 0 && ret != -EINVAL)
> > + return dev_err_probe(&client->dev, ret,
> > + "Error reading thermocouple-type property\n");
> > +
> > + if (data->thermocouple_type >= ARRAY_SIZE(mcp9600_type_map))
> > + return dev_err_probe(&client->dev, -EINVAL,
> > + "Invalid thermocouple-type property %u.\n",
> > + data->thermocouple_type);
> > +
> > + /* Set initial config. */
> > + ret = mcp9600_config(data);
> > + if (ret < 0)
> > + return ret;
> > +
> > ch_sel = mcp9600_probe_alerts(indio_dev);
> > if (ch_sel < 0)
> > return ch_sel;
>
>
--
Ben Collins
https://libjwt.io
https://github.com/benmcollins
--
3EC9 7598 1672 961A 1139 173A 5D5A 57C7 242B 22CF
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2025-08-17 2:54 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-15 16:46 [PATCH 0/5] iio: mcp9600: Features and improvements Ben Collins
2025-08-15 16:46 ` [PATCH 1/5] dt-bindings: iio: mcp9600: Add compatible for microchip,mcp9601 Ben Collins
2025-08-16 9:58 ` Jonathan Cameron
2025-08-16 18:55 ` David Lechner
2025-08-17 16:37 ` Ben Collins
2025-08-17 16:51 ` David Lechner
2025-08-17 17:34 ` Ben Collins
2025-08-17 17:59 ` David Lechner
2025-08-17 21:02 ` Ben Collins
2025-08-17 21:10 ` Ben Collins
2025-08-18 6:42 ` Krzysztof Kozlowski
2025-08-15 16:46 ` [PATCH 2/5] iio: mcp9600: White space cleanup for tab alignment Ben Collins
2025-08-16 9:59 ` Jonathan Cameron
2025-08-15 16:46 ` [PATCH 3/5] iio: mcp9600: Recognize chip id for mcp9601 Ben Collins
2025-08-16 8:46 ` kernel test robot
2025-08-16 10:02 ` Jonathan Cameron
2025-08-18 15:06 ` Nathan Chancellor
2025-08-18 15:11 ` Ben Collins
2025-08-18 15:18 ` Jonathan Cameron
2025-08-16 10:04 ` Jonathan Cameron
2025-08-15 16:46 ` [PATCH 4/5] iio: mcp9600: Add support for thermocouple-type Ben Collins
2025-08-16 10:11 ` Jonathan Cameron
2025-08-16 13:18 ` Ben Collins
2025-08-16 15:09 ` Jonathan Cameron
2025-08-16 18:24 ` David Lechner
2025-08-17 2:54 ` Ben Collins [this message]
2025-08-17 3:32 ` David Lechner
2025-08-15 16:46 ` [PATCH 5/5] iio: mcp9600: Add support for IIR filter Ben Collins
2025-08-16 10:15 ` Jonathan Cameron
2025-08-16 17:22 ` David Lechner
2025-08-16 10:07 ` [PATCH 0/5] iio: mcp9600: Features and improvements Jonathan Cameron
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2025081622-industrious-dragonfly-ed3cba@boujee-and-buff \
--to=ben.collins@linux.dev \
--cc=andy@kernel.org \
--cc=bcollins@watter.com \
--cc=dlechner@baylibre.com \
--cc=jic23@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nuno.sa@analog.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox