Skip to content

Commit 315ffcc

Browse files
kylegodbeyJiri Kosina
authored andcommitted
HID: uclogic: Add support for Huion HS64 tablet
Add support for Huion HS64 drawing tablet to hid-uclogic Signed-off-by: Kyle Godbey <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
1 parent dcf768b commit 315ffcc

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

drivers/hid/hid-ids.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -573,6 +573,7 @@
573573

574574
#define USB_VENDOR_ID_HUION 0x256c
575575
#define USB_DEVICE_ID_HUION_TABLET 0x006e
576+
#define USB_DEVICE_ID_HUION_HS64 0x006d
576577

577578
#define USB_VENDOR_ID_IBM 0x04b3
578579
#define USB_DEVICE_ID_IBM_SCROLLPOINT_III 0x3100

drivers/hid/hid-uclogic-core.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,8 @@ static const struct hid_device_id uclogic_devices[] = {
369369
USB_DEVICE_ID_UCLOGIC_TABLET_TWHA60) },
370370
{ HID_USB_DEVICE(USB_VENDOR_ID_HUION,
371371
USB_DEVICE_ID_HUION_TABLET) },
372+
{ HID_USB_DEVICE(USB_VENDOR_ID_HUION,
373+
USB_DEVICE_ID_HUION_HS64) },
372374
{ HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC,
373375
USB_DEVICE_ID_HUION_TABLET) },
374376
{ HID_USB_DEVICE(USB_VENDOR_ID_UCLOGIC,

drivers/hid/hid-uclogic-params.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,8 @@ int uclogic_params_init(struct uclogic_params *params,
977977
/* FALL THROUGH */
978978
case VID_PID(USB_VENDOR_ID_HUION,
979979
USB_DEVICE_ID_HUION_TABLET):
980+
case VID_PID(USB_VENDOR_ID_HUION,
981+
USB_DEVICE_ID_HUION_HS64):
980982
case VID_PID(USB_VENDOR_ID_UCLOGIC,
981983
USB_DEVICE_ID_HUION_TABLET):
982984
case VID_PID(USB_VENDOR_ID_UCLOGIC,

0 commit comments

Comments
 (0)