blob: 2ac61ca63c63a07f09c3d6f87f2b4c17a02048ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#
# The whole ecore-fb init logic is somewhat flawed; with this patch we
# get at least a working touchscreen w/ tslib again.
#
# Signed-off-by: Michael 'Mickey' Lauer <mlauer@vanille-media.de>
#
Index: ecore/src/lib/ecore_fb/ecore_fb.c
===================================================================
--- ecore.orig/src/lib/ecore_fb/ecore_fb.c
+++ ecore/src/lib/ecore_fb/ecore_fb.c
@@ -46,6 +46,9 @@
if (!ecore_fb_vt_init())
return --_ecore_fb_init_count;
+
+ if (!ecore_fb_ts_init())
+ return --_ecore_fb_init_count;
ECORE_FB_EVENT_KEY_DOWN = ecore_event_type_new();
ECORE_FB_EVENT_KEY_UP = ecore_event_type_new();
@@ -70,6 +73,7 @@
if (--_ecore_fb_init_count != 0)
return _ecore_fb_init_count;
+ ecore_fb_ts_shutdown();
ecore_fb_vt_shutdown();
return _ecore_fb_init_count;
|