diff options
author | Chidambar Zinnoury <chidambar.zinnoury@zefla.fr> | 2015-10-27 17:02:11 +0100 |
---|---|---|
committer | Chidambar Zinnoury <chidambar.zinnoury@zefla.fr> | 2015-10-27 17:02:11 +0100 |
commit | d1f863b2727d35728705e223b91ae2ee53442985 (patch) | |
tree | 9b36293a23cc4f0356ab4b52126012293d431298 | |
parent | 250b09abc535731f8c0084085820402335752209 (diff) |
ecore fb: Change default tslib device.
It seems that tslib has been using /dev/input/event0 as default device for more than a decade. Let’s align.
-rw-r--r-- | src/lib/ecore_fb/ecore_fb_ts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_fb/ecore_fb_ts.c b/src/lib/ecore_fb/ecore_fb_ts.c index b9880ec63e..cc68d5d67c 100644 --- a/src/lib/ecore_fb/ecore_fb_ts.c +++ b/src/lib/ecore_fb/ecore_fb_ts.c | |||
@@ -111,7 +111,7 @@ ecore_fb_ts_init(void) | |||
111 | } | 111 | } |
112 | } | 112 | } |
113 | #else | 113 | #else |
114 | _ecore_fb_ts_fd = open("/dev/touchscreen/0", O_RDONLY); | 114 | _ecore_fb_ts_fd = open("/dev/input/event0", O_RDONLY); |
115 | #endif | 115 | #endif |
116 | if (_ecore_fb_ts_fd >= 0) | 116 | if (_ecore_fb_ts_fd >= 0) |
117 | { | 117 | { |