Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Input: wacom - fix 3rd-gen Bamboo MT when 4+ fingers are in use

The message count field uses three bits of storage, not two.

Signed-off-by: Jason Gerecke <killertofu@gmail.com>
Acked-by: Chris Bagwell <chris@cnpbagwell.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>

authored by

Jason Gerecke and committed by
Dmitry Torokhov
19d57d3a f3761c07

+1 -1
+1 -1
drivers/input/tablet/wacom_wac.c
··· 926 926 { 927 927 struct input_dev *input = wacom->input; 928 928 unsigned char *data = wacom->data; 929 - int count = data[1] & 0x03; 929 + int count = data[1] & 0x07; 930 930 int i; 931 931 932 932 if (data[0] != 0x02)