]> Pileus Git - ~andy/linux/blobdiff - drivers/input/mouse/sentelic.c
Merge branch 'next' into for-linus
[~andy/linux] / drivers / input / mouse / sentelic.c
index b47155d8bc8c3ef0effc46b565f18f9371dffab3..e582922bacf7d5715cf0f70216c3dd8a4d299eeb 100644 (file)
@@ -721,6 +721,17 @@ static psmouse_ret_t fsp_process_byte(struct psmouse *psmouse)
 
        switch (psmouse->packet[0] >> FSP_PKT_TYPE_SHIFT) {
        case FSP_PKT_TYPE_ABS:
+
+               if ((packet[0] == 0x48 || packet[0] == 0x49) &&
+                   packet[1] == 0 && packet[2] == 0) {
+                       /*
+                        * Ignore coordinate noise when finger leaving the
+                        * surface, otherwise cursor may jump to upper-left
+                        * corner.
+                        */
+                       packet[3] &= 0xf0;
+               }
+
                abs_x = GET_ABS_X(packet);
                abs_y = GET_ABS_Y(packet);