]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
Input: psmouse - remove hardcoded touchpad size from the focaltech driver
authorMathias Gottschlag <mgottschlag@gmail.com>
Sat, 7 Mar 2015 21:26:31 +0000 (13:26 -0800)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Sat, 7 Mar 2015 21:40:20 +0000 (13:40 -0800)
The size has in most cases already been fetched from the touchpad, the
hardcoded values should have been removed.

Signed-off-by: Mathias Gottschlag <mgottschlag@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/mouse/focaltech.c

index 757f78a94aeccb1be6b80819f75752a09e705bf6..e8fafe8785a7a6aea33114762d34dc4081df9805 100644 (file)
@@ -67,9 +67,6 @@ static void focaltech_reset(struct psmouse *psmouse)
 
 #define FOC_MAX_FINGERS 5
 
-#define FOC_MAX_X 2431
-#define FOC_MAX_Y 1663
-
 /*
  * Current state of a single finger on the touchpad.
  */
@@ -131,7 +128,7 @@ static void focaltech_report_state(struct psmouse *psmouse)
                if (active) {
                        input_report_abs(dev, ABS_MT_POSITION_X, finger->x);
                        input_report_abs(dev, ABS_MT_POSITION_Y,
-                                        FOC_MAX_Y - finger->y);
+                                        priv->y_max - finger->y);
                }
        }
        input_mt_report_pointer_emulation(dev, true);