summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe TORDEUX <christophe@tordeux.net>2012-12-24 09:20:40 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-11 09:06:56 -0800
commit1a37441ae4ad38d98c39b349137c0fb7f76b32ad (patch)
treeafd9e849dc5ede014da96143ff42eacad3ef6b99
parentc815c83dfd1aef11d4197dc46b21a2471b81af2c (diff)
downloadlinux-3.10-1a37441ae4ad38d98c39b349137c0fb7f76b32ad.tar.gz
linux-3.10-1a37441ae4ad38d98c39b349137c0fb7f76b32ad.tar.bz2
linux-3.10-1a37441ae4ad38d98c39b349137c0fb7f76b32ad.zip
Input: sentelic - only report position of first finger as ST coordinates
commit a25461659050b913e114d282bf58823682eb56b6 upstream. Report only the position of the first finger as absolute non-MT coordinates, instead of reporting both fingers alternatively. Actual MT events are unaffected. This fixes horizontal and improves vertical scrolling with the touchpad. Signed-off-by: Christophe TORDEUX <christophe@tordeux.net> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/input/mouse/sentelic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/mouse/sentelic.c b/drivers/input/mouse/sentelic.c
index 661a0ca3b3d..1257ce8147f 100644
--- a/drivers/input/mouse/sentelic.c
+++ b/drivers/input/mouse/sentelic.c
@@ -759,7 +759,7 @@ static psmouse_ret_t fsp_process_byte(struct psmouse *psmouse)
fsp_set_slot(dev, 0, fgrs > 0, abs_x, abs_y);
fsp_set_slot(dev, 1, false, 0, 0);
}
- if (fgrs > 0) {
+ if (fgrs == 1 || (fgrs == 2 && !(packet[0] & FSP_PB0_MFMC_FGR2))) {
input_report_abs(dev, ABS_X, abs_x);
input_report_abs(dev, ABS_Y, abs_y);
}