[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>
This commit is contained in:
parent
ee02594958
commit
f873e3e88d
1 changed files with 1 additions and 1 deletions
|
@ -2103,7 +2103,7 @@ aiptek_probe(struct usb_interface *intf, const struct usb_device_id *id)
|
|||
* values.
|
||||
*/
|
||||
input_set_abs_params(inputdev, ABS_X, 0, 2999, 0, 0);
|
||||
input_set_abs_params(inputdev, ABS_X, 0, 2249, 0, 0);
|
||||
input_set_abs_params(inputdev, ABS_Y, 0, 2249, 0, 0);
|
||||
input_set_abs_params(inputdev, ABS_PRESSURE, 0, 511, 0, 0);
|
||||
input_set_abs_params(inputdev, ABS_TILT_X, AIPTEK_TILT_MIN, AIPTEK_TILT_MAX, 0, 0);
|
||||
input_set_abs_params(inputdev, ABS_TILT_Y, AIPTEK_TILT_MIN, AIPTEK_TILT_MAX, 0, 0);
|
||||
|
|
Loading…
Reference in a new issue