33 lines
1.0 KiB
Diff
33 lines
1.0 KiB
Diff
|
From: Adel Gadllah <adel.gadllah-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
|
||
|
Date: Sun, 5 Oct 2014 18:32:34 +0200
|
||
|
Subject: [PATCH] USB: quirks: enable device-qualifier quirk for another Elan
|
||
|
touchscreen
|
||
|
|
||
|
Currently this quirk is enabled for the model with the device id 0x0089, it
|
||
|
is needed for the 0x009b model, which is found on the Fujitsu Lifebook u904
|
||
|
as well.
|
||
|
|
||
|
Signed-off-by: Adel Gadllah <adel.gadllah-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
|
||
|
---
|
||
|
drivers/usb/core/quirks.c | 4 ++++
|
||
|
1 file changed, 4 insertions(+)
|
||
|
|
||
|
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c
|
||
|
index 5ae883dc21f5..0999e0285e07 100644
|
||
|
--- a/drivers/usb/core/quirks.c
|
||
|
+++ b/drivers/usb/core/quirks.c
|
||
|
@@ -97,6 +97,10 @@ static const struct usb_device_id usb_quirk_list[] = {
|
||
|
{ USB_DEVICE(0x04f3, 0x0089), .driver_info =
|
||
|
USB_QUIRK_DEVICE_QUALIFIER },
|
||
|
|
||
|
+ /* Elan Touchscreen */
|
||
|
+ { USB_DEVICE(0x04f3, 0x009b), .driver_info =
|
||
|
+ USB_QUIRK_DEVICE_QUALIFIER },
|
||
|
+
|
||
|
/* Roland SC-8820 */
|
||
|
{ USB_DEVICE(0x0582, 0x0007), .driver_info = USB_QUIRK_RESET_RESUME },
|
||
|
|
||
|
--
|
||
|
1.9.3
|
||
|
|