[PATCH v1 01/13] iio: Fix typo in vendor name

From: Marcelo Schmitt

Date: Wed Sep 02 2026 - 13:33:47 EST


Correct a typo in vendor company name: "Analog Device" -> "Analog Devices".

Signed-off-by: Marcelo Schmitt <marcelo.schmitt@xxxxxxxxxx>
---
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.

drivers/iio/adc/Kconfig | 12 ++++++------
drivers/iio/dac/ad3552r.c | 2 +-
2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/iio/adc/Kconfig b/drivers/iio/adc/Kconfig
index 38e212a6f789..02f189e90c30 100644
--- a/drivers/iio/adc/Kconfig
+++ b/drivers/iio/adc/Kconfig
@@ -105,7 +105,7 @@ config AD4080
called ad4080.

config AD4130
- tristate "Analog Device AD4130 ADC Driver"
+ tristate "Analog Devices AD4130 ADC Driver"
depends on SPI
depends on GPIOLIB
select IIO_BUFFER
@@ -121,7 +121,7 @@ config AD4130
called ad4130.

config AD4134
- tristate "Analog Device AD4134 ADC Driver"
+ tristate "Analog Devices AD4134 ADC Driver"
depends on SPI
select REGMAP_SPI
select CRC8
@@ -133,7 +133,7 @@ config AD4134
called ad4134_spi.

config AD4170_4
- tristate "Analog Device AD4170-4 ADC Driver"
+ tristate "Analog Devices AD4170-4 ADC Driver"
depends on SPI
select REGMAP_SPI
select IIO_BUFFER
@@ -164,7 +164,7 @@ config AD4691
called ad4691.

config AD4695
- tristate "Analog Device AD4695 ADC Driver"
+ tristate "Analog Devices AD4695 ADC Driver"
depends on SPI
select IIO_BUFFER
select IIO_BUFFER_DMAENGINE
@@ -179,7 +179,7 @@ config AD4695
called ad4695.

config AD4851
- tristate "Analog Device AD4851 DAS Driver"
+ tristate "Analog Devices AD4851 DAS Driver"
depends on SPI
depends on PWM
select REGMAP_SPI
@@ -347,7 +347,7 @@ config AD7380
called ad7380.

config AD7405
- tristate "Analog Device AD7405 ADC Driver"
+ tristate "Analog Devices AD7405 ADC Driver"
depends on IIO_BACKEND
help
Say yes here to build support for Analog Devices AD7405, ADUM7701,
diff --git a/drivers/iio/dac/ad3552r.c b/drivers/iio/dac/ad3552r.c
index 16db94fef9d4..039af514adde 100644
--- a/drivers/iio/dac/ad3552r.c
+++ b/drivers/iio/dac/ad3552r.c
@@ -696,6 +696,6 @@ static struct spi_driver ad3552r_driver = {
module_spi_driver(ad3552r_driver);

MODULE_AUTHOR("Mihail Chindris <mihail.chindris@xxxxxxxxxx>");
-MODULE_DESCRIPTION("Analog Device AD3552R DAC");
+MODULE_DESCRIPTION("Analog Devices AD3552R DAC");
MODULE_LICENSE("GPL v2");
MODULE_IMPORT_NS("IIO_AD3552R");
--
2.53.0