Skip to content

Commit 085ccdf

Browse files
authored
Merge pull request linuxwacom#326 from skomra/viper-small-new-pid
backport: HID: wacom: Add new Intuos Pro Small (PTH-460) device IDs
2 parents 9421ff1 + ff30bc5 commit 085ccdf

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

3.17/wacom_wac.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4799,6 +4799,10 @@ static const struct wacom_features wacom_features_0x3c6 =
47994799
static const struct wacom_features wacom_features_0x3c8 =
48004800
{ "Wacom Intuos BT M", 21600, 13500, 4095, 63,
48014801
INTUOSHT3_BT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4 };
4802+
static const struct wacom_features wacom_features_0x3dd =
4803+
{ "Wacom Intuos Pro S", 31920, 19950, 8191, 63,
4804+
INTUOSP2S_BT, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7,
4805+
.touch_max = 10 };
48024806

48034807
static const struct wacom_features wacom_features_HID_ANY_ID =
48044808
{ "Wacom HID", .type = HID_GENERIC, .oVid = HID_ANY_ID, .oPid = HID_ANY_ID };
@@ -4974,6 +4978,7 @@ const struct hid_device_id wacom_ids[] = {
49744978
{ BT_DEVICE_WACOM(0x393) },
49754979
{ BT_DEVICE_WACOM(0x3c6) },
49764980
{ BT_DEVICE_WACOM(0x3c8) },
4981+
{ BT_DEVICE_WACOM(0x3dd) },
49774982
{ USB_DEVICE_WACOM(0x4001) },
49784983
{ USB_DEVICE_WACOM(0x4004) },
49794984
{ USB_DEVICE_WACOM(0x5000) },

3.7/wacom_wac.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3563,6 +3563,9 @@ static const struct wacom_features wacom_features_0x3c5 =
35633563
static const struct wacom_features wacom_features_0x3c7 =
35643564
{ "Intuos BT M", WACOM_PKGLEN_INTUOSP2, 21600, 13500, 4095,
35653565
63, INTUOSHT3, WACOM_INTUOS_RES, WACOM_INTUOS_RES, 4 };
3566+
static const struct wacom_features wacom_features_0x3dc =
3567+
{ "Wacom Intuos Pro S", WACOM_PKGLEN_INTUOSP2, 31920, 19950, 8191, 63,
3568+
INTUOSP2S, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 7, .touch_max = 10 };
35663569

35673570
#define USB_DEVICE_WACOM(prod) \
35683571
USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \
@@ -3770,6 +3773,7 @@ const struct usb_device_id wacom_ids[] = {
37703773
{ USB_DEVICE_WACOM(0x3BD) },
37713774
{ USB_DEVICE_WACOM(0x3c5) },
37723775
{ USB_DEVICE_WACOM(0x3c7) },
3776+
{ USB_DEVICE_WACOM(0x3dc) },
37733777
{ USB_DEVICE_WACOM(0x4001) },
37743778
{ USB_DEVICE_WACOM(0x4004) },
37753779
{ USB_DEVICE_WACOM(0x5000) },

0 commit comments

Comments
 (0)