-
Notifications
You must be signed in to change notification settings - Fork 710
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tslib: Fix build with 4.x kernel headers
Fixes | ../../tslib-1.21/tools/ts_uinput.c:337:15: error: 'struct input_event' has no member named 'input_event_usec' | 337 | data->ev[c].input_event_usec = s[j][i].tv.tv_usec; | | ^ Signed-off-by: Khem Raj <raj.khem@gmail.com>
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
...cipes-graphics/tslib/tslib/0001-Fix-build-error-with-input_event_sec-for-old-kernel.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
From 050bf24c16e95f63a76e13156346a072035d45b4 Mon Sep 17 00:00:00 2001 | ||
From: Evan Harvey <evanwork1234@gmail.com> | ||
Date: Thu, 19 Mar 2020 01:32:03 -0700 | ||
Subject: [PATCH] Fix build error with input_event_sec for old kernel | ||
|
||
Upstream-Status: Backport [https://github.com/libts/tslib/commit/050bf24c16e95f63a76e13156346a072035d45b4] | ||
Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
--- | ||
tools/ts_uinput.c | 5 +++++ | ||
1 file changed, 5 insertions(+) | ||
|
||
diff --git a/tools/ts_uinput.c b/tools/ts_uinput.c | ||
index 1832a07..9c40bb3 100644 | ||
--- a/tools/ts_uinput.c | ||
+++ b/tools/ts_uinput.c | ||
@@ -51,6 +51,11 @@ | ||
#include <linux/fb.h> | ||
#endif | ||
|
||
+#ifndef input_event_sec | ||
+#define input_event_sec time.tv_sec | ||
+#define input_event_usec time.tv_usec | ||
+#endif | ||
+ | ||
#define RESET "\033[0m" | ||
#define RED "\033[31m" | ||
#define GREEN "\033[32m" | ||
-- | ||
2.26.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters