[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1527507182-3858-1-git-send-email-kt.liao@emc.com.tw>
Date: Mon, 28 May 2018 19:33:02 +0800
From: KT Liao <kt.liao@....com.tw>
To: linux-kernel@...r.kernel.org, linux-input@...r.kernel.org,
dmitry.torokhov@...il.com, ulrik.debie-os@...ig.org
Cc: phoenix@....com.tw, kt.liao@....com.tw, aaron.ma@...onical.com,
josh.chen@....com.tw
Subject: [PATCH] Input: elantech - Fix V4 report decoding for module with middle key
Some touchpad has middle key and it will be indicated in bit 2 of packet[0].
We need to fix V4 formation's byte mask to prevent error decoding.
Signed-off-by: KT Liao <kt.liao@....com.tw>
---
drivers/input/mouse/elantech.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/mouse/elantech.c b/drivers/input/mouse/elantech.c
index fb4d902..f39dc66 100644
--- a/drivers/input/mouse/elantech.c
+++ b/drivers/input/mouse/elantech.c
@@ -799,7 +799,7 @@ static int elantech_packet_check_v4(struct psmouse *psmouse)
else if (ic_version == 7 && etd->info.samples[1] == 0x2A)
sanity_check = ((packet[3] & 0x1c) == 0x10);
else
- sanity_check = ((packet[0] & 0x0c) == 0x04 &&
+ sanity_check = ((packet[0] & 0x08) == 0x00 &&
(packet[3] & 0x1c) == 0x10);
if (!sanity_check)
--
2.7.4
Powered by blists - more mailing lists