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

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] Input: aiptek - fix Y axis setup

This patch fixes a typo introduced by conversion to dynamic input_dev
allocation.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Riccardo Magliocchetti and committed by
Linus Torvalds
f873e3e8 ee025949

+1 -1
+1 -1
drivers/usb/input/aiptek.c
··· 2103 2103 * values. 2104 2104 */ 2105 2105 input_set_abs_params(inputdev, ABS_X, 0, 2999, 0, 0); 2106 - input_set_abs_params(inputdev, ABS_X, 0, 2249, 0, 0); 2106 + input_set_abs_params(inputdev, ABS_Y, 0, 2249, 0, 0); 2107 2107 input_set_abs_params(inputdev, ABS_PRESSURE, 0, 511, 0, 0); 2108 2108 input_set_abs_params(inputdev, ABS_TILT_X, AIPTEK_TILT_MIN, AIPTEK_TILT_MAX, 0, 0); 2109 2109 input_set_abs_params(inputdev, ABS_TILT_Y, AIPTEK_TILT_MIN, AIPTEK_TILT_MAX, 0, 0);