aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDaniel Mack <daniel@zonque.org>2018-07-04 15:45:47 +0000
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2018-07-04 16:07:56 +0000
commite32d7f1b246c1aef7b2d4f9fe0ce8863ac21128c (patch)
treeab9ba29484746192360659e83f54774b9c45d317 /drivers
parentdt-bindings: input: touchscreen: add bindings for eeti touchscreen controller (diff)
downloadlinux-dev-e32d7f1b246c1aef7b2d4f9fe0ce8863ac21128c.tar.xz
linux-dev-e32d7f1b246c1aef7b2d4f9fe0ce8863ac21128c.zip
Input: eeti - add device tree matching table
Provide a match table so that the driver can be used in devicetree setups. More properties are added in a later patch. Signed-off-by: Daniel Mack <daniel@zonque.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/input/touchscreen/eeti_ts.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/eeti_ts.c b/drivers/input/touchscreen/eeti_ts.c
index 2facad75eb6d..cc4fd33f9d6d 100644
--- a/drivers/input/touchscreen/eeti_ts.c
+++ b/drivers/input/touchscreen/eeti_ts.c
@@ -32,6 +32,7 @@
#include <linux/i2c.h>
#include <linux/timer.h>
#include <linux/gpio/consumer.h>
+#include <linux/of.h>
#include <linux/slab.h>
#include <asm/unaligned.h>
@@ -262,10 +263,18 @@ static const struct i2c_device_id eeti_ts_id[] = {
};
MODULE_DEVICE_TABLE(i2c, eeti_ts_id);
+#ifdef CONFIG_OF
+static const struct of_device_id of_eeti_ts_match[] = {
+ { .compatible = "eeti,exc3000-i2c", },
+ { }
+};
+#endif
+
static struct i2c_driver eeti_ts_driver = {
.driver = {
.name = "eeti_ts",
.pm = &eeti_ts_pm,
+ .of_match_table = of_match_ptr(of_eeti_ts_match),
},
.probe = eeti_ts_probe,
.id_table = eeti_ts_id,