Skip to content

Commit 0d40672

Browse files
committed
HID: wacom: Fix logic used for 3rd barrel switch emulation
When support was added for devices using an explicit 3rd barrel switch, the logic used by devices emulating this feature was broken. The 'if' statement / block that was introduced only handles the case where the button is pressed (i.e. 'barrelswitch' and 'barrelswitch2' are both set) but not the case where it is released (i.e. one or both being cleared). This results in a BTN_STYLUS3 "down" event being sent when the button is pressed, but no "up" event ever being sent afterwards. This patch restores the previously-used logic for determining button states in the emulated case so that switches are reported correctly again. Link: linuxwacom/xf86-input-wacom#292 Fixes: 6d09085b38e5 ("HID: wacom: Adding Support for new usages") CC: [email protected] #v5.19+ Signed-off-by: Jason Gerecke <[email protected]> Tested-by: Joshua Dickens <[email protected]> Reviewed-by: Ping Cheng <[email protected]> Signed-off-by: Jiri Kosina <[email protected]> [[email protected]: Imported into input-wacom (f77810f74413)] Signed-off-by: Jason Gerecke <[email protected]>
1 parent f6dd658 commit 0d40672

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

4.5/wacom_wac.c

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2540,11 +2540,12 @@ static void wacom_wac_pen_report(struct hid_device *hdev,
25402540

25412541
if (!delay_pen_events(wacom_wac) && wacom_wac->tool[0]) {
25422542
int id = wacom_wac->id[0];
2543-
if (wacom_wac->features.quirks & WACOM_QUIRK_PEN_BUTTON3 &&
2544-
wacom_wac->hid_data.barrelswitch & wacom_wac->hid_data.barrelswitch2) {
2545-
wacom_wac->hid_data.barrelswitch = 0;
2546-
wacom_wac->hid_data.barrelswitch2 = 0;
2547-
wacom_wac->hid_data.barrelswitch3 = 1;
2543+
if (wacom_wac->features.quirks & WACOM_QUIRK_PEN_BUTTON3) {
2544+
int sw_state = wacom_wac->hid_data.barrelswitch |
2545+
(wacom_wac->hid_data.barrelswitch2 << 1);
2546+
wacom_wac->hid_data.barrelswitch = sw_state == 1;
2547+
wacom_wac->hid_data.barrelswitch2 = sw_state == 2;
2548+
wacom_wac->hid_data.barrelswitch3 = sw_state == 3;
25482549
}
25492550
input_report_key(input, BTN_STYLUS, wacom_wac->hid_data.barrelswitch);
25502551
input_report_key(input, BTN_STYLUS2, wacom_wac->hid_data.barrelswitch2);

0 commit comments

Comments
 (0)