Skip to content

Commit c44922f

Browse files
dlechnunojsa
authored andcommitted
iio: dac: ad8460: fix DT compatible
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: a976ef2 ("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>
1 parent 11d16dc commit c44922f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/iio/dac/ad8460.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ static int ad8460_probe(struct spi_device *spi)
922922
}
923923

924924
static const struct of_device_id ad8460_of_match[] = {
925-
{ .compatible = "adi, ad8460" },
925+
{ .compatible = "adi,ad8460" },
926926
{ }
927927
};
928928
MODULE_DEVICE_TABLE(of, ad8460_of_match);

0 commit comments

Comments
 (0)