diff options
author | Ping Cheng <pinglinux@gmail.com> | 2014-11-11 12:52:08 -0800 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2014-11-11 23:49:53 +0100 |
commit | fefb391f8c15900477432a29d9c3527dd66a8415 (patch) | |
tree | 2bc827c57cb59cb65b0efe46a06d74e4fa5164f2 /drivers/hid | |
parent | 44b9683853c7b47d039366d7d2fd0d5380aba276 (diff) | |
download | linux-fefb391f8c15900477432a29d9c3527dd66a8415.tar.gz linux-fefb391f8c15900477432a29d9c3527dd66a8415.tar.bz2 linux-fefb391f8c15900477432a29d9c3527dd66a8415.zip |
HID: wacom: Add support for Intuos Pen Medium
Signed-off-by: Ping Cheng <pingc@wacom.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/wacom_wac.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c index d343a6ee5bf7..104829524bcd 100644 --- a/drivers/hid/wacom_wac.c +++ b/drivers/hid/wacom_wac.c @@ -2881,6 +2881,10 @@ static const struct wacom_features wacom_features_0x30C = { "Wacom ISDv5 30C", .type = WACOM_24HDT, /* Touch */ .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30A, .touch_max = 10, .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE }; +static const struct wacom_features wacom_features_0x323 = + { "Wacom Intuos P M", 21600, 13500, 1023, 31, + INTUOSHT, WACOM_INTUOS_RES, WACOM_INTUOS_RES, + .check_for_hid_type = true, .hid_type = HID_TYPE_USBNONE }; static const struct wacom_features wacom_features_HID_ANY_ID = { "Wacom HID", .type = HID_GENERIC }; @@ -3025,6 +3029,7 @@ const struct hid_device_id wacom_ids[] = { { USB_DEVICE_WACOM(0x314) }, { USB_DEVICE_WACOM(0x315) }, { USB_DEVICE_WACOM(0x317) }, + { USB_DEVICE_WACOM(0x323) }, { USB_DEVICE_WACOM(0x4001) }, { USB_DEVICE_WACOM(0x4004) }, { USB_DEVICE_WACOM(0x5000) }, |