aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/tmp103.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwmon/tmp103.c')
-rw-r--r--drivers/hwmon/tmp103.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/hwmon/tmp103.c b/drivers/hwmon/tmp103.c
index ad571ec795a3..d0bb28b0d4c3 100644
--- a/drivers/hwmon/tmp103.c
+++ b/drivers/hwmon/tmp103.c
@@ -183,9 +183,16 @@ static const struct i2c_device_id tmp103_id[] = {
183}; 183};
184MODULE_DEVICE_TABLE(i2c, tmp103_id); 184MODULE_DEVICE_TABLE(i2c, tmp103_id);
185 185
186static const struct of_device_id tmp103_of_match[] = {
187 { .compatible = "ti,tmp103" },
188 { },
189};
190MODULE_DEVICE_TABLE(of, tmp103_of_match);
191
186static struct i2c_driver tmp103_driver = { 192static struct i2c_driver tmp103_driver = {
187 .driver = { 193 .driver = {
188 .name = "tmp103", 194 .name = "tmp103",
195 .of_match_table = of_match_ptr(tmp103_of_match),
189 .pm = TMP103_DEV_PM_OPS, 196 .pm = TMP103_DEV_PM_OPS,
190 }, 197 },
191 .probe = tmp103_probe, 198 .probe = tmp103_probe,