|
@@ -395,6 +395,14 @@ static void wacom_usage_mapping(struct hid_device *hdev,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /* 2nd-generation Intuos Pro Large has incorrect Y maximum */
|
|
|
+ if (hdev->vendor == USB_VENDOR_ID_WACOM &&
|
|
|
+ hdev->product == 0x0358 &&
|
|
|
+ WACOM_PEN_FIELD(field) &&
|
|
|
+ wacom_equivalent_usage(usage->hid) == HID_GD_Y) {
|
|
|
+ field->logical_maximum = 43200;
|
|
|
+ }
|
|
|
+
|
|
|
switch (usage->hid) {
|
|
|
case HID_GD_X:
|
|
|
features->x_max = field->logical_maximum;
|