aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input/mouse/bcm5974.c
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@bitmath.org>2015-02-01 14:25:14 -0500
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2015-02-01 14:50:35 -0500
commit448c7f3830ca283e485aa943279acea6bde8b270 (patch)
tree9e5b1ce72aa87035bc73595d2ce925bacec6a155 /drivers/input/mouse/bcm5974.c
parent60bcaae15e0bd7f24d004ef2c9b3c8acb34b688d (diff)
Input: MT - add support for balanced slot assignment
Some devices are not fast enough to differentiate between a fast-moving contact and a new contact. This problem cannot be fully resolved because information is truly missing, but it is possible to safe-guard against obvious mistakes by restricting movement with a maximum displacement. The new problem formulation for dmax > 0 cannot benefit from the speedup for positive definite matrices, but since the convergence is faster, the result is about the same. For a handful of contacts, the latency difference is truly negligible. Suggested-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Tested-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Henrik Rydberg <rydberg@bitmath.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/mouse/bcm5974.c')
-rw-r--r--drivers/input/mouse/bcm5974.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/mouse/bcm5974.c b/drivers/input/mouse/bcm5974.c
index c329cdb0b91a..b10709f04615 100644
--- a/drivers/input/mouse/bcm5974.c
+++ b/drivers/input/mouse/bcm5974.c
@@ -564,7 +564,7 @@ static int report_tp_state(struct bcm5974 *dev, int size)
564 dev->index[n++] = &f[i]; 564 dev->index[n++] = &f[i];
565 } 565 }
566 566
567 input_mt_assign_slots(input, dev->slots, dev->pos, n); 567 input_mt_assign_slots(input, dev->slots, dev->pos, n, 0);
568 568
569 for (i = 0; i < n; i++) 569 for (i = 0; i < n; i++)
570 report_finger_data(input, dev->slots[i], 570 report_finger_data(input, dev->slots[i],