diff options
author | Hans de Goede <hdegoede@redhat.com> | 2018-05-03 11:32:33 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2018-05-09 13:58:01 +0200 |
commit | 070b9637dd8fa85c3ba7ecc60fe57fa4da9c2d1d (patch) | |
tree | dacdc8501d86e20535905cfc5d8e55afc47ca6e0 /drivers/hid/i2c-hid | |
parent | HID: intel-ish-hid: use put_device() instead of kfree() (diff) | |
download | linux-070b9637dd8fa85c3ba7ecc60fe57fa4da9c2d1d.tar.xz linux-070b9637dd8fa85c3ba7ecc60fe57fa4da9c2d1d.zip |
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>
Diffstat (limited to 'drivers/hid/i2c-hid')
-rw-r--r-- | drivers/hid/i2c-hid/i2c-hid.c | 2 |
1 files changed, 2 insertions, 0 deletions
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 { I2C_HID_QUIRK_NO_IRQ_AFTER_RESET }, { I2C_VENDOR_ID_RAYD, I2C_PRODUCT_ID_RAYD_3118, I2C_HID_QUIRK_RESEND_REPORT_DESCR }, + { USB_VENDOR_ID_SIS_TOUCH, USB_DEVICE_ID_SIS10FB_TOUCH, + I2C_HID_QUIRK_RESEND_REPORT_DESCR }, { 0, 0 } }; |