aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch')
-rw-r--r--recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch b/recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch
new file mode 100644
index 0000000000..2ff1e0a15c
--- /dev/null
+++ b/recipes/tslib/tslib/0001-relax-EV_VERSION-check-fail-only-if-version-of-runni.patch
@@ -0,0 +1,25 @@
+From cdf285aa7cbcc7de9ad5a8bf4c053372153f4242 Mon Sep 17 00:00:00 2001
+From: Martin Jansa <Martin.Jansa@gmail.com>
+Date: Wed, 12 Jan 2011 14:36:35 +0100
+Subject: [PATCH] relax EV_VERSION check, fail only if version of running kernel is lower than EV_VERSION from kernel headers
+
+---
+ plugins/input-raw.c | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/plugins/input-raw.c b/plugins/input-raw.c
+index 9511a0d..4396eab 100644
+--- a/plugins/input-raw.c
++++ b/plugins/input-raw.c
+@@ -78,7 +78,7 @@ static int check_fd(struct tslib_input *i)
+ return -1;
+ }
+
+- if (version != EV_VERSION) {
++ if (version < EV_VERSION) {
+ fprintf(stderr, "tslib: Selected device uses a different version of the event protocol than tslib was compiled for\n");
+ return -1;
+ }
+--
+1.7.4.rc1
+