From: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
To: Andy Shevchenko <andriy.shevchenko@intel.com>
Cc: Marcelo Schmitt <marcelo.schmitt@analog.com>,
linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux@analog.com, jic23@kernel.org,
nuno.sa@analog.com, dlechner@baylibre.com, andy@kernel.org,
Michael.Hennerich@analog.com, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org, corbet@lwn.net,
skhan@linuxfoundation.org
Subject: Re: [PATCH v1 01/13] iio: Fix typo in vendor name
Date: Fri, 4 Sep 2026 16:41:22 -0300 [thread overview]
Message-ID: <apse4gHE2pblXnN2@debian-BULLSEYE-live-builder-AMD64> (raw)
In-Reply-To: <apkSNlQuQkjdNKvx@ashevche-desk.local>
On 09/03, Andy Shevchenko wrote:
> On Wed, Sep 02, 2026 at 02:21:34PM -0300, Marcelo Schmitt wrote:
>
> > ---
> > Now
> > find drivers/iio/ -type f | xargs grep -i "Analog Device "
> > finds no leftover occurrence of such typo.
> >
> > Also,
> > grep -nrIi drivers/iio/ -e "Analog Device" | wc -l
> > and
> > grep -nrIi drivers/iio/ -e "Analog Devices" | wc -l
> > both count the same number of lines.
>
> Why not `git grep ...`?
>
Could be. I'm just more used to non-git grep.
> ...
>
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
>
> But you also want to fix possessive suffix usage
>
> $ git grep -n 'Analog Device[^s]'
>
> Documentation/iio/ade9000.rst:7:This driver supports Analog Device's ADE9000 and ADE9078 energy measurement
> Documentation/iio/adis16475.rst:7:This driver supports Analog Device's IMUs on SPI bus.
> Documentation/iio/adis16480.rst:7:This driver supports Analog Device's IMUs on SPI bus.
> Documentation/iio/adis16550.rst:7:This driver supports Analog Device's IMUs on SPI bus.
> Documentation/iio/adxl313.rst:7:This driver supports Analog Device's ADXL313 on SPI/I2C bus.
> Documentation/iio/adxl345.rst:7:This driver supports Analog Device's ADXL345/375 on SPI/I2C bus.
> Documentation/iio/adxl380.rst:7:This driver supports Analog Device's ADXL380/382 on SPI/I2C bus.
> drivers/iio/adc/Kconfig:108: tristate "Analog Device AD4130 ADC Driver"
> drivers/iio/adc/Kconfig:124: tristate "Analog Device AD4134 ADC Driver"
> drivers/iio/adc/Kconfig:136: tristate "Analog Device AD4170-4 ADC Driver"
> drivers/iio/adc/Kconfig:167: tristate "Analog Device AD4695 ADC Driver"
> drivers/iio/adc/Kconfig:182: tristate "Analog Device AD4851 DAS Driver"
> drivers/iio/adc/Kconfig:350: tristate "Analog Device AD7405 ADC Driver"
> drivers/iio/dac/ad3552r.c:699:MODULE_DESCRIPTION("Analog Device AD3552R DAC");
Ah, thanks for bringing this suggestion. Will adjust the possessive use as well.
Thanks for suggestions to other patches too. Will apply them for v2.
Thanks,
Marcelo
next prev parent reply other threads:[~2026-09-04 19:40 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-02 17:21 [PATCH v1 00/13] iio: adc: ad4134: Enable greater sample rate data capture Marcelo Schmitt
2026-09-02 17:21 ` [PATCH v1 01/13] iio: Fix typo in vendor name Marcelo Schmitt
2026-09-03 6:22 ` Andy Shevchenko
2026-09-04 19:41 ` Marcelo Schmitt [this message]
2026-09-05 7:40 ` Andy Shevchenko
2026-09-05 7:41 ` Andy Shevchenko
2026-09-02 17:21 ` [PATCH v1 02/13] iio: adc: ad4134: Drop import to empty name space Marcelo Schmitt
2026-09-02 17:22 ` [PATCH v1 03/13] iio: adc: ad4134: Update include list to comply with IWYU principles Marcelo Schmitt
2026-09-03 6:26 ` Andy Shevchenko
2026-09-02 17:22 ` [PATCH v1 04/13] iio: adc: ad4134: Serialize single-read operations Marcelo Schmitt
2026-09-03 6:27 ` Andy Shevchenko
2026-09-02 17:23 ` [PATCH v1 05/13] iio: adc: ad4134: Run shorter transfers when CRC is disabled Marcelo Schmitt
2026-09-02 17:23 ` [PATCH v1 06/13] iio: adc: ad4134: Add support for digital filter type selection Marcelo Schmitt
2026-09-03 6:31 ` Andy Shevchenko
2026-09-02 17:23 ` [PATCH v1 07/13] iio: adc: ad4134: Support buffered data read Marcelo Schmitt
2026-09-02 17:24 ` [PATCH v1 08/13] dt-bindings: iio: adc: adi,ad4134: Document SPI connection mode Marcelo Schmitt
2026-09-03 18:14 ` Conor Dooley
2026-09-04 20:47 ` Marcelo Schmitt
2026-09-04 22:06 ` Marcelo Schmitt
2026-09-02 17:24 ` [PATCH v1 09/13] iio: adc: ad4134: Support SPI 4-wire mode Marcelo Schmitt
2026-09-03 6:39 ` Andy Shevchenko
2026-09-02 17:24 ` [PATCH v1 10/13] dt-bindings: iio: adc: adi,ad4134: Document PWM usage Marcelo Schmitt
2026-09-04 15:53 ` Conor Dooley
2026-09-02 17:25 ` [PATCH v1 11/13] dt-bindings: iio: adc: adi,ad4134: Add high data throughput example Marcelo Schmitt
2026-09-02 17:25 ` [PATCH v1 12/13] iio: adc: ad4134: Support high-speed data capture Marcelo Schmitt
2026-09-03 7:00 ` Andy Shevchenko
2026-09-02 17:25 ` [PATCH v1 13/13] Docs: iio: Add AD4134 Marcelo Schmitt
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=apse4gHE2pblXnN2@debian-BULLSEYE-live-builder-AMD64 \
--to=marcelo.schmitt1@gmail.com \
--cc=Michael.Hennerich@analog.com \
--cc=andriy.shevchenko@intel.com \
--cc=andy@kernel.org \
--cc=conor+dt@kernel.org \
--cc=corbet@lwn.net \
--cc=devicetree@vger.kernel.org \
--cc=dlechner@baylibre.com \
--cc=jic23@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@analog.com \
--cc=marcelo.schmitt@analog.com \
--cc=nuno.sa@analog.com \
--cc=robh@kernel.org \
--cc=skhan@linuxfoundation.org \
/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