mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 22:52:35 +02:00
HID: wacom: Correct distance scale for 2nd-gen Intuos devices
commitb72fb1dcd2upstream. Distance values reported by 2nd-gen Intuos tablets are on an inverted scale (0 == far, 63 == near). We need to change them over to a normal scale before reporting to userspace or else userspace drivers and applications can get confused. Ref: https://github.com/linuxwacom/input-wacom/issues/98 Fixes:eda01dab53("HID: wacom: Add four new Intuos devices") Signed-off-by: Jason Gerecke <jason.gerecke@wacom.com> Cc: <stable@vger.kernel.org> # v4.4+ Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8317fe4a39
commit
375c6c72f5
|
|
@ -848,6 +848,8 @@ static int wacom_intuos_general(struct wacom_wac *wacom)
|
|||
y >>= 1;
|
||||
distance >>= 1;
|
||||
}
|
||||
if (features->type == INTUOSHT2)
|
||||
distance = features->distance_max - distance;
|
||||
input_report_abs(input, ABS_X, x);
|
||||
input_report_abs(input, ABS_Y, y);
|
||||
input_report_abs(input, ABS_DISTANCE, distance);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user