iio: chemical: Add OF match table for CCS811 VOC sensor
Add devicetree OF match table support for CCS811 VOC sensor. Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Manivannan Sadhasivam <mani@kernel.org> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
c6644f7201
commit
151e91733a
@ -549,9 +549,16 @@ static const struct i2c_device_id ccs811_id[] = {
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, ccs811_id);
|
||||
|
||||
static const struct of_device_id ccs811_dt_ids[] = {
|
||||
{ .compatible = "ams,ccs811" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, ccs811_dt_ids);
|
||||
|
||||
static struct i2c_driver ccs811_driver = {
|
||||
.driver = {
|
||||
.name = "ccs811",
|
||||
.of_match_table = ccs811_dt_ids,
|
||||
},
|
||||
.probe = ccs811_probe,
|
||||
.remove = ccs811_remove,
|
||||
|
Loading…
Reference in New Issue
Block a user