diff options
author | Hans de Goede <hdegoede@redhat.com> | 2018-05-03 05:32:33 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2018-05-09 07:58:01 -0400 |
commit | 070b9637dd8fa85c3ba7ecc60fe57fa4da9c2d1d (patch) | |
tree | dacdc8501d86e20535905cfc5d8e55afc47ca6e0 | |
parent | a4eb490a41a0da3b1275fc7427084cf9ae2c3c1c (diff) |
HID: i2c-hid: Add RESEND_REPORT_DESCR quirk for Toshiba Click Mini L9W-B
The 0457:10fb touchscreen found on the Toshiba Click Mini L9W-B needs
to have a report-decriptors command send to it on resume in order for
the touchscreen to start generating events again on resume.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/hid/hid-ids.h | 1 | ||||
-rw-r--r-- | drivers/hid/i2c-hid/i2c-hid.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index ec73aa486315..46f5ecd11bf7 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h | |||
@@ -972,6 +972,7 @@ | |||
972 | #define USB_DEVICE_ID_SIS817_TOUCH 0x0817 | 972 | #define USB_DEVICE_ID_SIS817_TOUCH 0x0817 |
973 | #define USB_DEVICE_ID_SIS_TS 0x1013 | 973 | #define USB_DEVICE_ID_SIS_TS 0x1013 |
974 | #define USB_DEVICE_ID_SIS1030_TOUCH 0x1030 | 974 | #define USB_DEVICE_ID_SIS1030_TOUCH 0x1030 |
975 | #define USB_DEVICE_ID_SIS10FB_TOUCH 0x10fb | ||
975 | 976 | ||
976 | #define USB_VENDOR_ID_SKYCABLE 0x1223 | 977 | #define USB_VENDOR_ID_SKYCABLE 0x1223 |
977 | #define USB_DEVICE_ID_SKYCABLE_WIRELESS_PRESENTER 0x3F07 | 978 | #define USB_DEVICE_ID_SKYCABLE_WIRELESS_PRESENTER 0x3F07 |
diff --git a/drivers/hid/i2c-hid/i2c-hid.c b/drivers/hid/i2c-hid/i2c-hid.c index 963328674e93..cc33622253aa 100644 --- a/drivers/hid/i2c-hid/i2c-hid.c +++ b/drivers/hid/i2c-hid/i2c-hid.c | |||
@@ -174,6 +174,8 @@ static const struct i2c_hid_quirks { | |||
174 | I2C_HID_QUIRK_NO_IRQ_AFTER_RESET }, | 174 | I2C_HID_QUIRK_NO_IRQ_AFTER_RESET }, |
175 | { I2C_VENDOR_ID_RAYD, I2C_PRODUCT_ID_RAYD_3118, | 175 | { I2C_VENDOR_ID_RAYD, I2C_PRODUCT_ID_RAYD_3118, |
176 | I2C_HID_QUIRK_RESEND_REPORT_DESCR }, | 176 | I2C_HID_QUIRK_RESEND_REPORT_DESCR }, |
177 | { USB_VENDOR_ID_SIS_TOUCH, USB_DEVICE_ID_SIS10FB_TOUCH, | ||
178 | I2C_HID_QUIRK_RESEND_REPORT_DESCR }, | ||
177 | { 0, 0 } | 179 | { 0, 0 } |
178 | }; | 180 | }; |
179 | 181 | ||