Skip to content

Commit

Permalink
Merge branch 'for-6.12' into 'master'
Browse files Browse the repository at this point in the history
  • Loading branch information
jigpu committed Nov 6, 2024
2 parents 4f0ee05 + ed97629 commit 105af20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 4.18/wacom_wac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1373,9 +1373,9 @@ static void wacom_intuos_pro2_bt_pen(struct wacom_wac *wacom)
rotation -= 1800;

input_report_abs(pen_input, ABS_TILT_X,
(char)frame[7]);
(signed char)frame[7]);
input_report_abs(pen_input, ABS_TILT_Y,
(char)frame[8]);
(signed char)frame[8]);
input_report_abs(pen_input, ABS_Z, rotation);
input_report_abs(pen_input, ABS_WHEEL,
get_unaligned_le16(&frame[11]));
Expand Down

0 comments on commit 105af20

Please sign in to comment.