Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 19d57d3a authored by Jason Gerecke's avatar Jason Gerecke Committed by Dmitry Torokhov
Browse files

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: default avatarJason Gerecke <killertofu@gmail.com>
Acked-by: default avatarChris Bagwell <chris@cnpbagwell.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent f3761c07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)