aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Gerecke <killertofu@gmail.com>2012-03-06 10:19:19 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2012-03-07 00:45:26 -0800
commit19d57d3a145e94349abf805eed2316ef720d86c2 (patch)
tree78c47ae5a9ec1827dee230e227e9ccd83233b1e0
parentf3761c0779b62276b5bf84532a81d5dc49bd721f (diff)
downloadlinux-msm-19d57d3a145e94349abf805eed2316ef720d86c2.tar.gz
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>
-rw-r--r--drivers/input/tablet/wacom_wac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/tablet/wacom_wac.c b/drivers/input/tablet/wacom_wac.c
index 88672ec296c11..cd3ed29e08013 100644
--- a/drivers/input/tablet/wacom_wac.c
+++ b/drivers/input/tablet/wacom_wac.c
@@ -926,7 +926,7 @@ static int wacom_bpt3_touch(struct wacom_wac *wacom)
{
struct input_dev *input = wacom->input;
unsigned char *data = wacom->data;
- int count = data[1] & 0x03;
+ int count = data[1] & 0x07;
int i;
if (data[0] != 0x02)