]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
iio: dac: ad8460: fix DT compatible
authorDavid Lechner <dlechner@baylibre.com>
Fri, 18 Oct 2024 21:24:01 +0000 (16:24 -0500)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 21 Oct 2024 18:19:24 +0000 (19:19 +0100)
Fix the DT compatible string in the of_device_id table to match the
binding documentation. There should not be a space after the comma.

Fixes: a976ef24c625 ("iio: dac: support the ad8460 Waveform DAC")
Signed-off-by: David Lechner <dlechner@baylibre.com>
Link: https://patch.msgid.link/20241018-iio-adc-ad8460-fix-dt-compatible-v1-1-058231638527@baylibre.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/dac/ad8460.c

index dc8c76ba573d159f9825fa7a18e809f6acdaa3f9..6706c8112094578484cb70adbd6827f1781694d8 100644 (file)
@@ -924,7 +924,7 @@ static int ad8460_probe(struct spi_device *spi)
 }
 
 static const struct of_device_id ad8460_of_match[] = {
-       { .compatible = "adi, ad8460" },
+       { .compatible = "adi,ad8460" },
        { }
 };
 MODULE_DEVICE_TABLE(of, ad8460_of_match);