mbox series

[v3,0/2] Add support to AD8460 Waveform Generator DAC

Message ID 20240904023040.23352-1-Mariel.Tinaco@analog.com (mailing list archive)
Headers show
Series Add support to AD8460 Waveform Generator DAC | expand

Message

Mariel Tinaco Sept. 4, 2024, 2:30 a.m. UTC
Apply comments for adding support to AD8460 Waveform Generator DAC

ad8460:
  * Fixed errors detected by test bot
  * Applied proper masking of fixed values
  * Applied proper wrapping to get close to 80 chars
  * Applied proper comment formatting
  * Applied proper placement of breaks in switch cases
  * Removed channel properties unused by IIO buffer interface
  * Simplified property getting on probe function
  * Fixed error handlings on probe function
  * Fixed setting of overvoltage, overcurrent and overtemperature ranges;
    If value provided is invalid, default state of the register will not
    be rewritten

Bindings:
  * Dropped unnecessary descriptions
  * Updated property descriptions to describe functionality properly
  * Added multiple selection of values for adi,range-microvolt property
  * Fixed formatting errors to follow DTS coding style
  * Lifted GPIO naming from gpio-consumer-common yaml

Patch:
  * Wrapped patches to 75 chars

Mariel Tinaco (2):
  dt-bindings: iio: dac: add docs for ad8460
  iio: dac: support the ad8460 Waveform DAC

 .../bindings/iio/dac/adi,ad8460.yaml          | 154 +++
 MAINTAINERS                                   |   8 +
 drivers/iio/dac/Kconfig                       |  13 +
 drivers/iio/dac/Makefile                      |   1 +
 drivers/iio/dac/ad8460.c                      | 932 ++++++++++++++++++
 5 files changed, 1108 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/iio/dac/adi,ad8460.yaml
 create mode 100644 drivers/iio/dac/ad8460.c


base-commit: c4b43d8336e52dce6d124e428aa3b71703e62647

Comments

Krzysztof Kozlowski Sept. 4, 2024, 6:16 a.m. UTC | #1
On Wed, Sep 04, 2024 at 10:30:38AM +0800, Mariel Tinaco wrote:
> Apply comments for adding support to AD8460 Waveform Generator DAC
> 
> ad8460:
>   * Fixed errors detected by test bot
>   * Applied proper masking of fixed values
>   * Applied proper wrapping to get close to 80 chars
>   * Applied proper comment formatting
>   * Applied proper placement of breaks in switch cases
>   * Removed channel properties unused by IIO buffer interface
>   * Simplified property getting on probe function
>   * Fixed error handlings on probe function
>   * Fixed setting of overvoltage, overcurrent and overtemperature ranges;
>     If value provided is invalid, default state of the register will not
>     be rewritten
> 
> Bindings:
>   * Dropped unnecessary descriptions
>   * Updated property descriptions to describe functionality properly
>   * Added multiple selection of values for adi,range-microvolt property
>   * Fixed formatting errors to follow DTS coding style
>   * Lifted GPIO naming from gpio-consumer-common yaml

This all happened in v3? Or v2? Please write accurate changelogs.

Best regards,
Krzysztof
Mariel Tinaco Sept. 5, 2024, 1:10 a.m. UTC | #2
> -----Original Message-----
> From: Krzysztof Kozlowski <krzk@kernel.org>
> Sent: Wednesday, September 4, 2024 2:16 PM
> To: Tinaco, Mariel <Mariel.Tinaco@analog.com>
> Cc: linux-iio@vger.kernel.org; devicetree@vger.kernel.org; linux-
> kernel@vger.kernel.org; Jonathan Cameron <jic23@kernel.org>; Lars-Peter
> Clausen <lars@metafoo.de>; Rob Herring <robh@kernel.org>; Krzysztof
> Kozlowski <krzk+dt@kernel.org>; Hennerich, Michael
> <Michael.Hennerich@analog.com>; Conor Dooley <conor+dt@kernel.org>;
> Marcelo Schmitt <marcelo.schmitt1@gmail.com>; Dimitri Fedrau
> <dima.fedrau@gmail.com>; David Lechner <dlechner@baylibre.com>; Nuno Sá
> <noname.nuno@gmail.com>
> Subject: Re: [PATCH v3 0/2] Add support to AD8460 Waveform Generator
> DAC
> 
> [External]
> 
> On Wed, Sep 04, 2024 at 10:30:38AM +0800, Mariel Tinaco wrote:
> > Apply comments for adding support to AD8460 Waveform Generator DAC
> >
> > ad8460:
> >   * Fixed errors detected by test bot
> >   * Applied proper masking of fixed values
> >   * Applied proper wrapping to get close to 80 chars
> >   * Applied proper comment formatting
> >   * Applied proper placement of breaks in switch cases
> >   * Removed channel properties unused by IIO buffer interface
> >   * Simplified property getting on probe function
> >   * Fixed error handlings on probe function
> >   * Fixed setting of overvoltage, overcurrent and overtemperature ranges;
> >     If value provided is invalid, default state of the register will not
> >     be rewritten
> >
> > Bindings:
> >   * Dropped unnecessary descriptions
> >   * Updated property descriptions to describe functionality properly
> >   * Added multiple selection of values for adi,range-microvolt property
> >   * Fixed formatting errors to follow DTS coding style
> >   * Lifted GPIO naming from gpio-consumer-common yaml
> 
> This all happened in v3? Or v2? Please write accurate changelogs.
> 
> Best regards,
> Krzysztof

It seems I missed to put the version of the changelogs. These are all comments
V2 and the changes were applied to the last release, v3. I'll keep this in mind
the next time. Thanks!

Best regards,
Mariel