Skip to content

Commit 09c049b

Browse files
ODROID-U: Add Xenarc 700CSH multitouch V/PID.
Change-Id: Ie4d5687c73eb370a28d317cb09dd117ddabea3a7
1 parent c8af6ac commit 09c049b

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

drivers/hid/hid-ids.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -804,3 +804,7 @@
804804
/* Acer UT220HQL tbmjz HDMI/USB Multitouch Screen */
805805
#define USB_VENDOR_ID_ACER 0x25AA
806806
#define USB_DEVICE_ID_UT220HQL_TOUCH 0x8882
807+
808+
/* Xenarc 700CSH with eGalax Capacitive Multi-touch Screen */
809+
#define USB_VENDOR_ID_XENARC 0x0EEF
810+
#define USB_DEVICE_ID_700CSH_TOUCH 0x7200

drivers/hid/hid-multitouch.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,6 +1192,13 @@ static const struct hid_device_id mt_devices[] = {
11921192
HID_USB_DEVICE(USB_VENDOR_ID_ACER,
11931193
USB_DEVICE_ID_UT220HQL_TOUCH) },
11941194

1195+
/* Xenarc 700CSH with eGalax Capacitive Multi-touch Screen */
1196+
{ .driver_data = MT_CLS_DEFAULT,
1197+
HID_USB_DEVICE(USB_VENDOR_ID_XENARC,
1198+
USB_DEVICE_ID_700CSH_TOUCH) },
1199+
1200+
/* Generic MT device */
1201+
{ HID_DEVICE(HID_BUS_ANY, HID_GROUP_MULTITOUCH, HID_ANY_ID, HID_ANY_ID) },
11951202
{ }
11961203
};
11971204
MODULE_DEVICE_TABLE(hid, mt_devices);

0 commit comments

Comments
 (0)