drivers/iio/adc/ad7173.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
Wrong compatible strings are used for AD411x devices.
Fix by adding the missing "adi," prefix.
Fixes: 13d12e3ad12d ("iio: adc: ad7173: Add support for AD411x devices")
Signed-off-by: Dumitru Ceclan <dumitru.ceclan@analog.com>
---
drivers/iio/adc/ad7173.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/iio/adc/ad7173.c b/drivers/iio/adc/ad7173.c
index 9544bf7142ad..a854f2d30174 100644
--- a/drivers/iio/adc/ad7173.c
+++ b/drivers/iio/adc/ad7173.c
@@ -1435,11 +1435,11 @@ static int ad7173_probe(struct spi_device *spi)
}
static const struct of_device_id ad7173_of_match[] = {
- { .compatible = "ad4111", .data = &ad4111_device_info },
- { .compatible = "ad4112", .data = &ad4112_device_info },
- { .compatible = "ad4114", .data = &ad4114_device_info },
- { .compatible = "ad4115", .data = &ad4115_device_info },
- { .compatible = "ad4116", .data = &ad4116_device_info },
+ { .compatible = "adi,ad4111", .data = &ad4111_device_info },
+ { .compatible = "adi,ad4112", .data = &ad4112_device_info },
+ { .compatible = "adi,ad4114", .data = &ad4114_device_info },
+ { .compatible = "adi,ad4115", .data = &ad4115_device_info },
+ { .compatible = "adi,ad4116", .data = &ad4116_device_info },
{ .compatible = "adi,ad7172-2", .data = &ad7172_2_device_info },
{ .compatible = "adi,ad7172-4", .data = &ad7172_4_device_info },
{ .compatible = "adi,ad7173-8", .data = &ad7173_8_device_info },
--
2.43.0
On Tue, 2024-07-23 at 14:13 +0300, Dumitru Ceclan wrote:
> Wrong compatible strings are used for AD411x devices.
> Fix by adding the missing "adi," prefix.
>
> Fixes: 13d12e3ad12d ("iio: adc: ad7173: Add support for AD411x devices")
> Signed-off-by: Dumitru Ceclan <dumitru.ceclan@analog.com>
> ---
Reviewed-by: Nuno Sa <nuno.sa@analog.com>
On Wed, 24 Jul 2024 09:45:25 +0200
Nuno Sá <noname.nuno@gmail.com> wrote:
> On Tue, 2024-07-23 at 14:13 +0300, Dumitru Ceclan wrote:
> > Wrong compatible strings are used for AD411x devices.
> > Fix by adding the missing "adi," prefix.
> >
> > Fixes: 13d12e3ad12d ("iio: adc: ad7173: Add support for AD411x devices")
> > Signed-off-by: Dumitru Ceclan <dumitru.ceclan@analog.com>
> > ---
>
> Reviewed-by: Nuno Sa <nuno.sa@analog.com>
>
Applied to the fixes-togreg branch of iio.git
Thanks,
Jonathan
© 2016 - 2026 Red Hat, Inc.