Commit 382c7fce authored by Nishad Kamdar's avatar Nishad Kamdar Committed by Jonathan Cameron

staging: iio: ad2s1210: Add device tree table.

Add device tree table for matching vendor ID.

Note that as the driver is still heavily in flux and there are some
non obvious aspects to a comprehensive binding, that binding will
be submitted at a later date (before leaving staging!)
Signed-off-by: default avatarNishad Kamdar <nishadkamdar@gmail.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 66dd9e3d
...@@ -699,6 +699,12 @@ static int ad2s1210_remove(struct spi_device *spi) ...@@ -699,6 +699,12 @@ static int ad2s1210_remove(struct spi_device *spi)
return 0; return 0;
} }
static const struct of_device_id ad2s1210_of_match[] = {
{ .compatible = "adi,ad2s1210", },
{ }
};
MODULE_DEVICE_TABLE(of, ad2s1210_of_match);
static const struct spi_device_id ad2s1210_id[] = { static const struct spi_device_id ad2s1210_id[] = {
{ "ad2s1210" }, { "ad2s1210" },
{} {}
...@@ -708,6 +714,7 @@ MODULE_DEVICE_TABLE(spi, ad2s1210_id); ...@@ -708,6 +714,7 @@ MODULE_DEVICE_TABLE(spi, ad2s1210_id);
static struct spi_driver ad2s1210_driver = { static struct spi_driver ad2s1210_driver = {
.driver = { .driver = {
.name = DRV_NAME, .name = DRV_NAME,
.of_match_table = of_match_ptr(ad2s1210_of_match),
}, },
.probe = ad2s1210_probe, .probe = ad2s1210_probe,
.remove = ad2s1210_remove, .remove = ad2s1210_remove,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment