[LUCID][PATCH 4/6] HID: ntrig: Emit TOUCH with DOUBLETAP for single touch
Chase Douglas
chase.douglas at canonical.com
Mon May 24 13:54:32 UTC 2010
From: Rafi Rubin <rafi at seas.upenn.edu>
I squelched TipSwitch in a recent patch which resulted in the loss
of Touch events for single touch firmwares. This patch just puts Touch back
in for single touch, and bundles it with DoubleTap (like the multitouch code).
The two events are used to convey the same message to different drivers.
Signed-off-by: Rafi Rubin <rafi at seas.upenn.edu>
Signed-off-by: Jiri Kosina <jkosina at suse.cz>
(cherry picked from commit 2170c5a8ae4b952e517e7b0565528914ddc11320)
BugLink: http://bugs.launchpad.net/bugs/583531
Signed-off-by: Chase Douglas <chase.douglas at canonical.com>
---
drivers/hid/hid-ntrig.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/hid/hid-ntrig.c b/drivers/hid/hid-ntrig.c
index f60454a..ff605dd 100644
--- a/drivers/hid/hid-ntrig.c
+++ b/drivers/hid/hid-ntrig.c
@@ -172,6 +172,8 @@ static int ntrig_event (struct hid_device *hid, struct hid_field *field,
if (!nd->reading_mt) {
input_report_key(input, BTN_TOOL_DOUBLETAP,
(nd->confidence != 0));
+ input_report_key(input, BTN_TOUCH,
+ (nd->confidence != 0));
input_event(input, EV_ABS, ABS_X, nd->x);
input_event(input, EV_ABS, ABS_Y, nd->y);
}
--
1.7.0.4
More information about the kernel-team
mailing list