Add support for Wacom Cintiq Companion from Benjamin Tissoires (rhbz 1134969)
This commit is contained in:
parent
88954ba364
commit
52fafd4758
46
Input-wacom-Add-support-for-the-Cintiq-Companion.patch
Normal file
46
Input-wacom-Add-support-for-the-Cintiq-Companion.patch
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
From bdfffc320102278edac2db5a397ffbfd89faeab3 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Benjamin Tissoires <benjamin.tissoires@redhat.com>
|
||||||
|
Date: Wed, 3 Sep 2014 15:43:25 -0400
|
||||||
|
Subject: [PATCH] Input: wacom: Add support for the Cintiq Companion
|
||||||
|
|
||||||
|
The Wacom Cintiq Companion shares the same sensor than the Cintiq
|
||||||
|
Companion Hybrid, with the exception of the different PIDs.
|
||||||
|
|
||||||
|
Bugzilla: 1134969
|
||||||
|
Upstream-status: Queued for 3.18
|
||||||
|
|
||||||
|
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
|
||||||
|
---
|
||||||
|
drivers/input/tablet/wacom_wac.c | 9 +++++++++
|
||||||
|
1 file changed, 9 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/drivers/input/tablet/wacom_wac.c b/drivers/input/tablet/wacom_wac.c
|
||||||
|
index e73cf2c71f35..7f6caf8c85fb 100644
|
||||||
|
--- a/drivers/input/tablet/wacom_wac.c
|
||||||
|
+++ b/drivers/input/tablet/wacom_wac.c
|
||||||
|
@@ -2332,6 +2332,13 @@ static const struct wacom_features wacom_features_0x0307 =
|
||||||
|
static const struct wacom_features wacom_features_0x0309 =
|
||||||
|
{ "Wacom ISDv5 309", .type = WACOM_24HDT, /* Touch */
|
||||||
|
.oVid = USB_VENDOR_ID_WACOM, .oPid = 0x0307, .touch_max = 10 };
|
||||||
|
+static const struct wacom_features wacom_features_0x030A =
|
||||||
|
+ { "Wacom ISDv5 30A", WACOM_PKGLEN_INTUOS, 59352, 33648, 2047,
|
||||||
|
+ 63, CINTIQ_HYBRID, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES, 200, 200,
|
||||||
|
+ .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x30C };
|
||||||
|
+static const struct wacom_features wacom_features_0x030C =
|
||||||
|
+ { "Wacom ISDv5 30C", .type = WACOM_24HDT, /* Touch */
|
||||||
|
+ .oVid = USB_VENDOR_ID_WACOM, .oPid = 0x030A, .touch_max = 10 };
|
||||||
|
|
||||||
|
#define USB_DEVICE_WACOM(prod) \
|
||||||
|
USB_DEVICE(USB_VENDOR_ID_WACOM, prod), \
|
||||||
|
@@ -2478,6 +2485,8 @@ const struct usb_device_id wacom_ids[] = {
|
||||||
|
{ USB_DEVICE_WACOM(0xFA) },
|
||||||
|
{ USB_DEVICE_WACOM(0xFB) },
|
||||||
|
{ USB_DEVICE_WACOM(0x0307) },
|
||||||
|
+ { USB_DEVICE_WACOM(0x030A) },
|
||||||
|
+ { USB_DEVICE_DETAILED(0x030C, USB_CLASS_HID, 0, 0) },
|
||||||
|
{ USB_DEVICE_DETAILED(0x0309, USB_CLASS_HID, 0, 0) },
|
||||||
|
{ USB_DEVICE_LENOVO(0x6004) },
|
||||||
|
{ }
|
||||||
|
--
|
||||||
|
1.9.3
|
||||||
|
|
@ -656,6 +656,9 @@ Patch26017: isofs-Fix-unbounded-recursion-when-processing-relocated-directories.
|
|||||||
#rhbz 1132786
|
#rhbz 1132786
|
||||||
Patch26018: NFSv3-Fix-another-acl-regression.patch
|
Patch26018: NFSv3-Fix-another-acl-regression.patch
|
||||||
|
|
||||||
|
#rhbz 1134969
|
||||||
|
Patch26019: Input-wacom-Add-support-for-the-Cintiq-Companion.patch
|
||||||
|
|
||||||
# git clone ssh://git.fedorahosted.org/git/kernel-arm64.git, git diff master...devel
|
# git clone ssh://git.fedorahosted.org/git/kernel-arm64.git, git diff master...devel
|
||||||
Patch30000: kernel-arm64.patch
|
Patch30000: kernel-arm64.patch
|
||||||
|
|
||||||
@ -1396,6 +1399,9 @@ ApplyPatch isofs-Fix-unbounded-recursion-when-processing-relocated-directories.p
|
|||||||
#rhbz 1132786
|
#rhbz 1132786
|
||||||
ApplyPatch NFSv3-Fix-another-acl-regression.patch
|
ApplyPatch NFSv3-Fix-another-acl-regression.patch
|
||||||
|
|
||||||
|
#rhbz 1134969
|
||||||
|
ApplyPatch Input-wacom-Add-support-for-the-Cintiq-Companion.patch
|
||||||
|
|
||||||
%if 0%{?aarch64patches}
|
%if 0%{?aarch64patches}
|
||||||
ApplyPatch kernel-arm64.patch
|
ApplyPatch kernel-arm64.patch
|
||||||
%ifnarch aarch64 # this is stupid, but i want to notice before secondary koji does.
|
%ifnarch aarch64 # this is stupid, but i want to notice before secondary koji does.
|
||||||
@ -2272,6 +2278,9 @@ fi
|
|||||||
# ||----w |
|
# ||----w |
|
||||||
# || ||
|
# || ||
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 04 2014 Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
|
- Add support for Wacom Cintiq Companion from Benjamin Tissoires (rhbz 1134969)
|
||||||
|
|
||||||
* Tue Sep 02 2014 Josh Boyer <jwboyer@fedoraproject.org>
|
* Tue Sep 02 2014 Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
- Remove with_extra switch
|
- Remove with_extra switch
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user