* [PATCH] HID: yet another buggy ELAN touchscreen
@ 2014-11-17 16:11 Oliver Neukum
[not found] ` <1416240702-28988-1-git-send-email-oneukum-l3A5Bk7waGM@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Oliver Neukum @ 2014-11-17 16:11 UTC (permalink / raw)
To: jkosina, linux-input; +Cc: Oliver Neukum, stable
The touchscreen needs the same quirk as the other models.
Signed-off-by: Oliver Neukum <oneukum@suse.de>
Reported-by: Bryan Poling <poli0048@umn.edu>
CC: stable@vger.kernel.org
---
drivers/hid/hid-ids.h | 1 +
drivers/hid/usbhid/hid-quirks.c | 1 +
drivers/usb/core/quirks.c | 3 +++
3 files changed, 5 insertions(+)
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
index e23ab8b..282ffbe 100644
--- a/drivers/hid/hid-ids.h
+++ b/drivers/hid/hid-ids.h
@@ -299,6 +299,7 @@
#define USB_VENDOR_ID_ELAN 0x04f3
#define USB_DEVICE_ID_ELAN_TOUCHSCREEN 0x0089
#define USB_DEVICE_ID_ELAN_TOUCHSCREEN_009B 0x009b
+#define USB_DEVICE_ID_ELAN_TOUCHSCREEN_010c 0x010c
#define USB_DEVICE_ID_ELAN_TOUCHSCREEN_016F 0x016f
#define USB_VENDOR_ID_ELECOM 0x056e
diff --git a/drivers/hid/usbhid/hid-quirks.c b/drivers/hid/usbhid/hid-quirks.c
index 5014bb5..08b9626 100644
--- a/drivers/hid/usbhid/hid-quirks.c
+++ b/drivers/hid/usbhid/hid-quirks.c
@@ -72,6 +72,7 @@ static const struct hid_blacklist {
{ USB_VENDOR_ID_DMI, USB_DEVICE_ID_DMI_ENC, HID_QUIRK_NOGET },
{ USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ELAN_TOUCHSCREEN, HID_QUIRK_ALWAYS_POLL },
{ USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ELAN_TOUCHSCREEN_009B, HID_QUIRK_ALWAYS_POLL },
+ { USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ELAN_TOUCHSCREEN_010c, HID_QUIRK_ALWAYS_POLL },
{ USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ELAN_TOUCHSCREEN_016F, HID_QUIRK_ALWAYS_POLL },
{ USB_VENDOR_ID_ELO, USB_DEVICE_ID_ELO_TS2700, HID_QUIRK_NOGET },
{ USB_VENDOR_ID_FORMOSA, USB_DEVICE_ID_FORMOSA_IR_RECEIVER, HID_QUIRK_NO_INIT_REPORTS },
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c
index 39b4081..8e8bc4f 100644
--- a/drivers/usb/core/quirks.c
+++ b/drivers/usb/core/quirks.c
@@ -100,6 +100,9 @@ static const struct usb_device_id usb_quirk_list[] = {
{ USB_DEVICE(0x04f3, 0x009b), .driver_info =
USB_QUIRK_DEVICE_QUALIFIER },
+ { USB_DEVICE(0x04f3, 0x010c), .driver_info =
+ USB_QUIRK_DEVICE_QUALIFIER },
+
{ USB_DEVICE(0x04f3, 0x016f), .driver_info =
USB_QUIRK_DEVICE_QUALIFIER },
--
1.8.4.5
^ permalink raw reply related [flat|nested] 4+ messages in thread[parent not found: <1416240702-28988-1-git-send-email-oneukum-l3A5Bk7waGM@public.gmane.org>]
* Re: [PATCH] HID: yet another buggy ELAN touchscreen [not found] ` <1416240702-28988-1-git-send-email-oneukum-l3A5Bk7waGM@public.gmane.org> @ 2014-11-19 14:52 ` Jiri Kosina 2014-11-19 16:33 ` Greg Kroah-Hartman 0 siblings, 1 reply; 4+ messages in thread From: Jiri Kosina @ 2014-11-19 14:52 UTC (permalink / raw) To: Oliver Neukum Cc: linux-input-u79uwXL29TY76Z2rM5mHXA, stable-u79uwXL29TY76Z2rM5mHXA, Greg Kroah-Hartman, linux-usb-u79uwXL29TY76Z2rM5mHXA [ Greg and linux-usb@ added to CC ] On Mon, 17 Nov 2014, Oliver Neukum wrote: > The touchscreen needs the same quirk as the other models. > > Signed-off-by: Oliver Neukum <oneukum-l3A5Bk7waGM@public.gmane.org> > Reported-by: Bryan Poling <poli0048-OJFnDUYgAso@public.gmane.org> > CC: stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > --- > drivers/hid/hid-ids.h | 1 + > drivers/hid/usbhid/hid-quirks.c | 1 + > drivers/usb/core/quirks.c | 3 +++ Greg, are you OK with me taking the whole lot through hid.git in one commit? (USB quirks and HID quirks for Elan devices have been merged independently for previous 3 devices, but I don't think it's worth the hassle splitting it). Thanks. > 3 files changed, 5 insertions(+) > > diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h > index e23ab8b..282ffbe 100644 > --- a/drivers/hid/hid-ids.h > +++ b/drivers/hid/hid-ids.h > @@ -299,6 +299,7 @@ > #define USB_VENDOR_ID_ELAN 0x04f3 > #define USB_DEVICE_ID_ELAN_TOUCHSCREEN 0x0089 > #define USB_DEVICE_ID_ELAN_TOUCHSCREEN_009B 0x009b > +#define USB_DEVICE_ID_ELAN_TOUCHSCREEN_010c 0x010c > #define USB_DEVICE_ID_ELAN_TOUCHSCREEN_016F 0x016f > > #define USB_VENDOR_ID_ELECOM 0x056e > diff --git a/drivers/hid/usbhid/hid-quirks.c b/drivers/hid/usbhid/hid-quirks.c > index 5014bb5..08b9626 100644 > --- a/drivers/hid/usbhid/hid-quirks.c > +++ b/drivers/hid/usbhid/hid-quirks.c > @@ -72,6 +72,7 @@ static const struct hid_blacklist { > { USB_VENDOR_ID_DMI, USB_DEVICE_ID_DMI_ENC, HID_QUIRK_NOGET }, > { USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ELAN_TOUCHSCREEN, HID_QUIRK_ALWAYS_POLL }, > { USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ELAN_TOUCHSCREEN_009B, HID_QUIRK_ALWAYS_POLL }, > + { USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ELAN_TOUCHSCREEN_010c, HID_QUIRK_ALWAYS_POLL }, > { USB_VENDOR_ID_ELAN, USB_DEVICE_ID_ELAN_TOUCHSCREEN_016F, HID_QUIRK_ALWAYS_POLL }, > { USB_VENDOR_ID_ELO, USB_DEVICE_ID_ELO_TS2700, HID_QUIRK_NOGET }, > { USB_VENDOR_ID_FORMOSA, USB_DEVICE_ID_FORMOSA_IR_RECEIVER, HID_QUIRK_NO_INIT_REPORTS }, > diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c > index 39b4081..8e8bc4f 100644 > --- a/drivers/usb/core/quirks.c > +++ b/drivers/usb/core/quirks.c > @@ -100,6 +100,9 @@ static const struct usb_device_id usb_quirk_list[] = { > { USB_DEVICE(0x04f3, 0x009b), .driver_info = > USB_QUIRK_DEVICE_QUALIFIER }, > > + { USB_DEVICE(0x04f3, 0x010c), .driver_info = > + USB_QUIRK_DEVICE_QUALIFIER }, > + > { USB_DEVICE(0x04f3, 0x016f), .driver_info = > USB_QUIRK_DEVICE_QUALIFIER }, > > -- > 1.8.4.5 > -- Jiri Kosina SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] HID: yet another buggy ELAN touchscreen 2014-11-19 14:52 ` Jiri Kosina @ 2014-11-19 16:33 ` Greg Kroah-Hartman 2014-11-19 16:39 ` Jiri Kosina 0 siblings, 1 reply; 4+ messages in thread From: Greg Kroah-Hartman @ 2014-11-19 16:33 UTC (permalink / raw) To: Jiri Kosina; +Cc: Oliver Neukum, linux-input, stable, linux-usb On Wed, Nov 19, 2014 at 03:52:29PM +0100, Jiri Kosina wrote: > > [ Greg and linux-usb@ added to CC ] > > On Mon, 17 Nov 2014, Oliver Neukum wrote: > > > The touchscreen needs the same quirk as the other models. > > > > Signed-off-by: Oliver Neukum <oneukum@suse.de> > > Reported-by: Bryan Poling <poli0048@umn.edu> > > CC: stable@vger.kernel.org > > --- > > drivers/hid/hid-ids.h | 1 + > > drivers/hid/usbhid/hid-quirks.c | 1 + > > drivers/usb/core/quirks.c | 3 +++ > > Greg, are you OK with me taking the whole lot through hid.git in one > commit? (USB quirks and HID quirks for Elan devices have been merged > independently for previous 3 devices, but I don't think it's worth the > hassle splitting it). Yes, no objection from me: Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] HID: yet another buggy ELAN touchscreen 2014-11-19 16:33 ` Greg Kroah-Hartman @ 2014-11-19 16:39 ` Jiri Kosina 0 siblings, 0 replies; 4+ messages in thread From: Jiri Kosina @ 2014-11-19 16:39 UTC (permalink / raw) To: Greg Kroah-Hartman; +Cc: Oliver Neukum, linux-input, stable, linux-usb On Wed, 19 Nov 2014, Greg Kroah-Hartman wrote: > > On Mon, 17 Nov 2014, Oliver Neukum wrote: > > > > > The touchscreen needs the same quirk as the other models. > > > > > > Signed-off-by: Oliver Neukum <oneukum@suse.de> > > > Reported-by: Bryan Poling <poli0048@umn.edu> > > > CC: stable@vger.kernel.org > > > --- > > > drivers/hid/hid-ids.h | 1 + > > > drivers/hid/usbhid/hid-quirks.c | 1 + > > > drivers/usb/core/quirks.c | 3 +++ > > > > Greg, are you OK with me taking the whole lot through hid.git in one > > commit? (USB quirks and HID quirks for Elan devices have been merged > > independently for previous 3 devices, but I don't think it's worth the > > hassle splitting it). > > Yes, no objection from me: > > Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Thanks, now applied. -- Jiri Kosina SUSE Labs ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-11-19 16:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-17 16:11 [PATCH] HID: yet another buggy ELAN touchscreen Oliver Neukum
[not found] ` <1416240702-28988-1-git-send-email-oneukum-l3A5Bk7waGM@public.gmane.org>
2014-11-19 14:52 ` Jiri Kosina
2014-11-19 16:33 ` Greg Kroah-Hartman
2014-11-19 16:39 ` Jiri Kosina
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).