summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Gerecke <killertofu@gmail.com>2017-12-12 14:23:19 -0800
committerJason Gerecke <killertofu@gmail.com>2018-01-04 15:21:35 -0800
commit4108d97fd7d0690d1d343bc0229b68b5fb48a6fc (patch)
tree969c92e0125755d0af6b5bceb390a0caca46eb36
parent6cb08771c882a22773a7b0caffff9d253ca65e70 (diff)
downloadxf86-input-wacom-4108d97fd7d0690d1d343bc0229b68b5fb48a6fc.tar.gz
Add support for Cintiq 27QHDT
Signed-off-by: Jason Gerecke <jason.gerecke@wacom.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--src/wcmUSB.c2
-rw-r--r--src/wcmValidateDevice.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/wcmUSB.c b/src/wcmUSB.c
index 45277c1..9190fbe 100644
--- a/src/wcmUSB.c
+++ b/src/wcmUSB.c
@@ -289,6 +289,8 @@ static struct WacomModelDesc
{ WACOM_VENDOR_ID, 0x57, 200000, 200000, &usbCintiqV5, "DTK2241" },
{ WACOM_VENDOR_ID, 0x59, 200000, 200000, &usbCintiqV5, "DTH2242" },
{ WACOM_VENDOR_ID, 0x5B, 200000, 200000, &usbCintiqV5, "Cintiq 22HDT" },
+ { WACOM_VENDOR_ID, 0x32B, 200000, 200000, &usbCintiqV5, "Cintiq 27QHDT" },
+ { WACOM_VENDOR_ID, 0x32C, 200000, 200000, &usbCintiqV5, "Cintiq 27QHDT" }, /* Touch */
{ WACOM_VENDOR_ID, 0x34A, 200000, 200000, &usbCintiqV5, "Mobilestudio Pro 13" }, /* Touch */
{ WACOM_VENDOR_ID, 0x34B, 200000, 200000, &usbCintiqV5, "MobileStudio Pro 16" }, /* Touch */
{ WACOM_VENDOR_ID, 0x34D, 200000, 200000, &usbCintiqV5, "MobileStudio Pro 13" },
diff --git a/src/wcmValidateDevice.c b/src/wcmValidateDevice.c
index 4640b79..921b564 100644
--- a/src/wcmValidateDevice.c
+++ b/src/wcmValidateDevice.c
@@ -311,6 +311,7 @@ int wcmDeviceTypeKeys(InputInfoPtr pInfo)
break;
case 0x304:/* Cintiq 13HD */
+ case 0x32B:/* Cintiq 27QHDT Pen */
case 0x34F:/* Cintiq Pro 13 FHD */
case 0x350:/* Cintiq Pro 16 UHD */
case 0x351:/* Cintiq Pro 24 */
@@ -324,6 +325,7 @@ int wcmDeviceTypeKeys(InputInfoPtr pInfo)
case 0x59: /* DTH2242 Pen */
case 0x5D: /* DTH2242 Touch */
case 0x5E: /* Cintiq 22HDT Touch */
+ case 0x32C:/* Cintiq 27QHDT Touch */
case 0x34A:/* MobileStudio Pro 13 Touch */
case 0x34B:/* MobileStudio Pro 16 Touch */
case 0x353:/* Cintiq Pro 13 FHD Touch */