Skip to content

Commit 03a0dc5

Browse files
jigpuJiri Kosina
authored andcommitted
HID: wacom: Report 'strip2' values in ABS_RY
Commit c7f0522 accidentally used ABS_RX for reporting both 'strip1' and 'strip2', when the latter should actually be reported through ABS_RY. Signed-off-by: Jason Gerecke <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
1 parent f73d08d commit 03a0dc5

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
@@ -558,7 +558,7 @@ static int wacom_intuos_pad(struct wacom_wac *wacom)
558558
input_report_key(input, KEY_PROG1 + i, keys & (1 << i));
559559

560560
input_report_abs(input, ABS_RX, strip1);
561-
input_report_abs(input, ABS_RX, strip2);
561+
input_report_abs(input, ABS_RY, strip2);
562562

563563
input_report_abs(input, ABS_WHEEL, ring1 & 0x7f ? ring1 : 0);
564564
input_report_abs(input, ABS_THROTTLE, ring2 & 0x07 ? ring2 : 0);

0 commit comments

Comments
 (0)