diff options
author | Aaron Armstrong Skomra <[email protected]> | 2019-05-10 15:34:18 -0700 |
---|---|---|
committer | Jiri Kosina <[email protected]> | 2019-05-17 13:56:06 +0200 |
commit | 68c20cc2164cc5c7c73f8012ae6491afdb1f7f72 (patch) | |
tree | 9961a3b5c925b7b964d58916f0c33a87e237460d | |
parent | d4b8efeb46d99a5d02e7f88ac4eaccbe49370770 (diff) |
HID: wacom: correct touch resolution x/y typo
This affects the 2nd-gen Intuos Pro Medium and Large
when using their Bluetooth connection.
Fixes: 4922cd26f03c ("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]>
-rw-r--r-- | drivers/hid/wacom_wac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c index ed6726eeeae5..a98ad4fdcf9e 100644 --- a/drivers/hid/wacom_wac.c +++ b/drivers/hid/wacom_wac.c @@ -3692,7 +3692,7 @@ int wacom_setup_touch_input_capabilities(struct input_dev *input_dev, 0, 5920, 4, 0); } input_abs_set_res(input_dev, ABS_MT_POSITION_X, 40); - input_abs_set_res(input_dev, ABS_MT_POSITION_X, 40); + input_abs_set_res(input_dev, ABS_MT_POSITION_Y, 40); /* fall through */ |