Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Input: wm97xx - adapt parameters to tosa touchscreen.

Sharp SL-6000 (tosa) touchscreen needs wider limits to properly map all
points on the screen. Expand ranges in abs_x and abs_y arrays according
to the touchscreen area.

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Dmitry Eremin-Solenikov and committed by
Dmitry Torokhov
859abd1d 993b3a3f

+2 -2
+2 -2
drivers/input/touchscreen/wm97xx-core.c
··· 70 70 * Documentation/input/input-programming.txt for more details. 71 71 */ 72 72 73 - static int abs_x[3] = {350, 3900, 5}; 73 + static int abs_x[3] = {150, 4000, 5}; 74 74 module_param_array(abs_x, int, NULL, 0); 75 75 MODULE_PARM_DESC(abs_x, "Touchscreen absolute X min, max, fuzz"); 76 76 77 - static int abs_y[3] = {320, 3750, 40}; 77 + static int abs_y[3] = {200, 4000, 40}; 78 78 module_param_array(abs_y, int, NULL, 0); 79 79 MODULE_PARM_DESC(abs_y, "Touchscreen absolute Y min, max, fuzz"); 80 80