Skip to content

Commit dd418fb

Browse files
committed
Merge pull request #90 from thpert/odroid-thomas
HID: Add support for Hanns.G HT231HPB Touchscreen
2 parents f95e68b + 234ba68 commit dd418fb

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

drivers/hid/hid-ids.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -792,3 +792,7 @@
792792
#define USB_VENDOR_ID_FOCALTECH 0x2808
793793
#define USB_DEVICE_ID_FOCALTECH_TOUCH 0x81C9
794794
#endif
795+
796+
/* Silicon Integrated Systems Corp */
797+
#define USB_VENDOR_ID_SILICON 0x0457
798+
#define USB_DEVICE_ID_SILICON_TOUCH 0x1057

drivers/hid/hid-multitouch.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,6 +1177,11 @@ static const struct hid_device_id mt_devices[] = {
11771177
HID_USB_DEVICE(USB_VENDOR_ID_ZYTRONIC,
11781178
USB_DEVICE_ID_ZYTRONIC_ZXY100) },
11791179

1180+
/* Silicon Integrated Systems Corp */
1181+
{ .driver_data = MT_CLS_DEFAULT,
1182+
HID_USB_DEVICE(USB_VENDOR_ID_SILICON,
1183+
USB_DEVICE_ID_SILICON_TOUCH) },
1184+
11801185
{ }
11811186
};
11821187
MODULE_DEVICE_TABLE(hid, mt_devices);

0 commit comments

Comments
 (0)