Commit 8c8b01c3 authored by Forest Bond's avatar Forest Bond Committed by Jiri Kosina

HID: ignore digitizer usage Undefined (0x00)

SMART Technologies has recommended this change to fix a problem reported
with SMART Board series interactive whiteboards.

A description of the device-specific symptom follows:

  When the board is connected my mouse bounces up to the top left corner.

Bjorn has tested this fix with model SB680.
Tested-by: default avatarBjorn Behrendt <bbehrendt@msjvermont.org>
Signed-off-by: default avatarForest Bond <forest@alittletooquiet.net>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent a11b3fab
...@@ -301,6 +301,9 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel ...@@ -301,6 +301,9 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
case HID_UP_DIGITIZER: case HID_UP_DIGITIZER:
switch (usage->hid & 0xff) { switch (usage->hid & 0xff) {
case 0x00: /* Undefined */
goto ignore;
case 0x30: /* TipPressure */ case 0x30: /* TipPressure */
if (!test_bit(BTN_TOUCH, input->keybit)) { if (!test_bit(BTN_TOUCH, input->keybit)) {
device->quirks |= HID_QUIRK_NOTOUCH; device->quirks |= HID_QUIRK_NOTOUCH;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment