Skip to content

Commit 68c20cc

Browse files
skomraJiri Kosina
authored andcommitted
HID: wacom: correct touch resolution x/y typo
This affects the 2nd-gen Intuos Pro Medium and Large when using their Bluetooth connection. Fixes: 4922cd2 ("HID: wacom: Support 2nd-gen Intuos Pro's Bluetooth classic interface") Cc: <[email protected]> # v4.11+ Signed-off-by: Aaron Armstrong Skomra <[email protected]> Reviewed-by: Jason Gerecke <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
1 parent d4b8efe commit 68c20cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/hid/wacom_wac.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3692,7 +3692,7 @@ int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
36923692
0, 5920, 4, 0);
36933693
}
36943694
input_abs_set_res(input_dev, ABS_MT_POSITION_X, 40);
3695-
input_abs_set_res(input_dev, ABS_MT_POSITION_X, 40);
3695+
input_abs_set_res(input_dev, ABS_MT_POSITION_Y, 40);
36963696

36973697
/* fall through */
36983698

0 commit comments

Comments
 (0)