Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1669418 > unrolled thread
| Started by | Michael Stecklein <m-stecklein@ti.com> |
|---|---|
| First post | 2017-06-19 18:10 +0200 |
| Last post | 2017-06-19 18:10 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v2 3/3] iio: humidity: hdc100x: add match table and device id's Michael Stecklein <m-stecklein@ti.com> - 2017-06-19 18:10 +0200
| From | Michael Stecklein <m-stecklein@ti.com> |
|---|---|
| Date | 2017-06-19 18:10 +0200 |
| Subject | [PATCH v2 3/3] iio: humidity: hdc100x: add match table and device id's |
| Message-ID | <tU7py-4Ul-63@gated-at.bofh.it> |
Add of_match_table and point it to a list of compatible device tree
device id's.
Signed-off-by: Michael Stecklein <m-stecklein@ti.com>
---
drivers/iio/humidity/hdc100x.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/iio/humidity/hdc100x.c b/drivers/iio/humidity/hdc100x.c
index 6778bc7..7851bd9 100644
--- a/drivers/iio/humidity/hdc100x.c
+++ b/drivers/iio/humidity/hdc100x.c
@@ -429,9 +429,20 @@ static const struct i2c_device_id hdc100x_id[] = {
};
MODULE_DEVICE_TABLE(i2c, hdc100x_id);
+static const struct of_device_id hdc100x_dt_ids[] = {
+ { .compatible = "ti,hdc1000" },
+ { .compatible = "ti,hdc1008" },
+ { .compatible = "ti,hdc1010" },
+ { .compatible = "ti,hdc1050" },
+ { .compatible = "ti,hdc1080" },
+ { }
+};
+MODULE_DEVICE_TABLE(of, hdc100x_dt_ids);
+
static struct i2c_driver hdc100x_driver = {
.driver = {
.name = "hdc100x",
+ .of_match_table = of_match_ptr(hdc100x_dt_ids),
},
.probe = hdc100x_probe,
.remove = hdc100x_remove,
--
2.7.4
Back to top | Article view | linux.kernel
csiph-web