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.
This commit is contained in:
Chidambar Zinnoury 2015-10-27 17:02:11 +01:00
parent 250b09abc5
commit d1f863b272
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ ecore_fb_ts_init(void)
}
}
#else
_ecore_fb_ts_fd = open("/dev/touchscreen/0", O_RDONLY);
_ecore_fb_ts_fd = open("/dev/input/event0", O_RDONLY);
#endif
if (_ecore_fb_ts_fd >= 0)
{