hwmon: (sht4x) Add device tree match table
This patch enables automatic loading of the sht4x module via a device tree table entry. Signed-off-by: David Mosberger-Tang <davidm@egauge.net> Link: https://lore.kernel.org/r/20211121160637.2312106-1-davidm@egauge.net Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
e380095b80
commit
62cfc05763
|
@ -281,9 +281,16 @@ static const struct i2c_device_id sht4x_id[] = {
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(i2c, sht4x_id);
|
MODULE_DEVICE_TABLE(i2c, sht4x_id);
|
||||||
|
|
||||||
|
static const struct of_device_id sht4x_of_match[] = {
|
||||||
|
{ .compatible = "sensirion,sht4x" },
|
||||||
|
{ }
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, sht4x_of_match);
|
||||||
|
|
||||||
static struct i2c_driver sht4x_driver = {
|
static struct i2c_driver sht4x_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "sht4x",
|
.name = "sht4x",
|
||||||
|
.of_match_table = sht4x_of_match,
|
||||||
},
|
},
|
||||||
.probe = sht4x_probe,
|
.probe = sht4x_probe,
|
||||||
.id_table = sht4x_id,
|
.id_table = sht4x_id,
|
||||||
|
|
Loading…
Reference in New Issue