Linux IIO development
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Yu-Hsian Yang <j2anfernee@gmail.com>
Cc: Krzysztof Kozlowski <krzk@kernel.org>,
	avifishman70@gmail.com, tmaimon77@gmail.com,
	tali.perry1@gmail.com, venture@google.com, yuenn@google.com,
	benjaminfair@google.com, lars@metafoo.de, robh@kernel.org,
	krzk+dt@kernel.org, conor+dt@kernel.org, nuno.sa@analog.com,
	dlechner@baylibre.com, javier.carrasco.cruz@gmail.com,
	andy@kernel.org, marcelo.schmitt@analog.com,
	olivier.moysan@foss.st.com, mitrutzceclan@gmail.com,
	matteomartelli3@gmail.com, alisadariana@gmail.com,
	joao.goncalves@toradex.com, marius.cristea@microchip.com,
	mike.looijmans@topic.nl, chanh@os.amperecomputing.com,
	KWLIU@nuvoton.com, yhyang2@nuvoton.com, openbmc@lists.ozlabs.org,
	linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1 2/2] iio: adc: add Nuvoton NCT720x ADC driver
Date: Sat, 9 Nov 2024 13:45:38 +0000	[thread overview]
Message-ID: <20241109134538.6f09971d@jic23-huawei> (raw)
In-Reply-To: <CA+4VgcJSt-LUNtH6TMpk7om+PbO1aQvmt1WHi-cYMxa8p+Um5A@mail.gmail.com>

On Thu, 7 Nov 2024 08:41:21 +0800
Yu-Hsian Yang <j2anfernee@gmail.com> wrote:

> Dear Krzysztof Kozlowski,
> 
> Thank you for your response.
> 
> Krzysztof Kozlowski <krzk@kernel.org> 於 2024年11月6日 週三 下午9:41寫道:
> >
> > On 06/11/2024 03:39, Eason Yang wrote:  
> > > Add Nuvoton NCT7201/NCT7202 system voltage monitor 12-bit ADC driver
> > >
> > > NCT7201/NCT7202 supports up to 12 analog voltage monitor inputs and up to
> > > 4 SMBus addresses by ADDR pin. Meanwhile, ALERT# hardware event pins for
> > > independent alarm signals, and the all threshold values could be set for
> > > system protection without any timing delay. It also supports reset input
> > > RSTIN# to recover system from a fault condition.
> > >
> > > Currently, only single-edge mode conversion and threshold events support.
> > >
> > > Signed-off-by: Eason Yang <j2anfernee@gmail.com>  
> >
> > ...
> >  
> > > +
> > > +static int nct720x_probe(struct i2c_client *client)
> > > +{
> > > +     const struct i2c_device_id *id = i2c_client_get_device_id(client);
> > > +     struct nct720x_chip_info *chip;
> > > +     struct iio_dev *indio_dev;
> > > +     int ret;
> > > +     u32 tmp;
> > > +
> > > +     indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*chip));
> > > +     if (!indio_dev)
> > > +             return -ENOMEM;
> > > +     chip = iio_priv(indio_dev);
> > > +
> > > +     if (client->dev.of_node)
> > > +             chip->type = (enum nct720x_chips)device_get_match_data(&client->dev);
> > > +     else
> > > +             chip->type = i2c_match_id(nct720x_id, client)->driver_data;  
> >
> > I believe there is a I2C wrapper for above.
> >  
> 
> Got it.

Don't pass an enum value as data.  Pass a pointer to a structure that describes the particular
variant.  The 0 value which tends to end up in enums is an error for device_get_match_data.

> 
> > > +
> > > +     chip->vin_max = (chip->type == nct7201) ? NCT7201_VIN_MAX : NCT7202_VIN_MAX;
> > > +
> > > +     ret = of_property_read_u32(client->dev.of_node, "read-vin-data-size", &tmp);
> > > +     if (ret < 0) {
> > > +             pr_err("read-vin-data-size property not found\n");  
> >
> > Please use dev_xxx in your driver code.  
> 
> Got it.
> 
> >
> >
> > Best regards,
> > Krzysztof
> >  


  reply	other threads:[~2024-11-09 13:45 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-06  2:39 [PATCH v1 0/2] iio: adc: add Nuvoton NCT720x ADC driver Eason Yang
2024-11-06  2:39 ` [PATCH v1 1/2] dt-bindings: iio: adc: Add binding for Nuvoton NCT720x ADCs Eason Yang
2024-11-06  4:58   ` Chanh Nguyen
2024-11-06  9:22     ` Yu-Hsian Yang
2024-11-09 13:42       ` Jonathan Cameron
2024-11-09 14:29         ` Jonathan Cameron
2024-11-11  7:45           ` Yu-Hsian Yang
2024-11-23 14:47             ` Jonathan Cameron
2024-11-28  2:14               ` Yu-Hsian Yang
2024-11-29 14:50                 ` David Lechner
2024-12-02  3:57                   ` Yu-Hsian Yang
2024-11-06 16:13     ` Conor Dooley
2024-11-07  0:59       ` Yu-Hsian Yang
2024-11-09 13:44   ` Jonathan Cameron
2024-11-06  2:39 ` [PATCH v1 2/2] iio: adc: add Nuvoton NCT720x ADC driver Eason Yang
2024-11-06 12:30   ` kernel test robot
2024-11-07  0:36     ` Yu-Hsian Yang
2024-11-06 13:41   ` Krzysztof Kozlowski
2024-11-07  0:41     ` Yu-Hsian Yang
2024-11-09 13:45       ` Jonathan Cameron [this message]
2024-12-04  1:49         ` Yu-Hsian Yang
2024-11-07  6:13   ` anish kumar
2024-11-07  7:17     ` Yu-Hsian Yang
2024-11-07  8:02   ` Andy Shevchenko
2024-11-09 14:37   ` Jonathan Cameron
2024-12-04  2:50     ` Yu-Hsian Yang

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=20241109134538.6f09971d@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=KWLIU@nuvoton.com \
    --cc=alisadariana@gmail.com \
    --cc=andy@kernel.org \
    --cc=avifishman70@gmail.com \
    --cc=benjaminfair@google.com \
    --cc=chanh@os.amperecomputing.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dlechner@baylibre.com \
    --cc=j2anfernee@gmail.com \
    --cc=javier.carrasco.cruz@gmail.com \
    --cc=joao.goncalves@toradex.com \
    --cc=krzk+dt@kernel.org \
    --cc=krzk@kernel.org \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcelo.schmitt@analog.com \
    --cc=marius.cristea@microchip.com \
    --cc=matteomartelli3@gmail.com \
    --cc=mike.looijmans@topic.nl \
    --cc=mitrutzceclan@gmail.com \
    --cc=nuno.sa@analog.com \
    --cc=olivier.moysan@foss.st.com \
    --cc=openbmc@lists.ozlabs.org \
    --cc=robh@kernel.org \
    --cc=tali.perry1@gmail.com \
    --cc=tmaimon77@gmail.com \
    --cc=venture@google.com \
    --cc=yhyang2@nuvoton.com \
    --cc=yuenn@google.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