提交 0eec1f38 编写于 作者: B Bárbara Fernandes 提交者: Jonathan Cameron

staging: iio: ad7192: create of_device_id array

Create list of compatible device ids to be matched with those stated in
the device tree.
Signed-off-by: NBárbara Fernandes <barbara.fernandes@usp.br>
Signed-off-by: NWilson Sales <spoonm@spoonm.org>
Co-developed by: Wilson Sales <spoonm@spoonm.org>
Signed-off-by: NJonathan Cameron <Jonathan.Cameron@huawei.com>
上级 0ebcdf3d
...@@ -809,11 +809,23 @@ static const struct spi_device_id ad7192_id[] = { ...@@ -809,11 +809,23 @@ static const struct spi_device_id ad7192_id[] = {
{"ad7195", ID_AD7195}, {"ad7195", ID_AD7195},
{} {}
}; };
MODULE_DEVICE_TABLE(spi, ad7192_id); MODULE_DEVICE_TABLE(spi, ad7192_id);
static const struct of_device_id ad7192_of_match[] = {
{ .compatible = "adi,ad7190" },
{ .compatible = "adi,ad7192" },
{ .compatible = "adi,ad7193" },
{ .compatible = "adi,ad7195" },
{}
};
MODULE_DEVICE_TABLE(of, ad7192_of_match);
static struct spi_driver ad7192_driver = { static struct spi_driver ad7192_driver = {
.driver = { .driver = {
.name = "ad7192", .name = "ad7192",
.of_match_table = ad7192_of_match,
}, },
.probe = ad7192_probe, .probe = ad7192_probe,
.remove = ad7192_remove, .remove = ad7192_remove,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册