Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

HID: wacom: Modify pen IDs

The pen ID, 0x80842, was not the correct ID for wacom driver to
treat. The ID was corrected to 0x8842.
Also, 0x4200 was not the expected ID used on any Wacom device.
Therefore, 0x4200 was removed.

Signed-off-by: Tatsunosuke Tobita <tatsunosuke.tobita@wacom.com>
Signed-off-by: Tatsunosuke Tobita <tatsunosuke.wacom@gmail.com>
Fixes: bfdc750c4cb2 ("HID: wacom: add three styli to wacom_intuos_get_tool_type")
Cc: stable@kernel.org #6.2
Reviewed-by: Ping Cheng <ping.cheng@wacom.com>
Link: https://patch.msgid.link/20240709055729.17158-1-tatsunosuke.wacom@gmail.com
Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>

authored by

Tatsunosuke Tobita and committed by
Benjamin Tissoires
f0d17d69 6e504d2c

+1 -2
+1 -2
drivers/hid/wacom_wac.c
··· 714 714 case 0x8e2: /* IntuosHT2 pen */ 715 715 case 0x022: 716 716 case 0x200: /* Pro Pen 3 */ 717 - case 0x04200: /* Pro Pen 3 */ 718 717 case 0x10842: /* MobileStudio Pro Pro Pen slim */ 719 718 case 0x14802: /* Intuos4/5 13HD/24HD Classic Pen */ 720 719 case 0x16802: /* Cintiq 13HD Pro Pen */ 721 720 case 0x18802: /* DTH2242 Pen */ 722 721 case 0x10802: /* Intuos4/5 13HD/24HD General Pen */ 723 - case 0x80842: /* Intuos Pro and Cintiq Pro 3D Pen */ 722 + case 0x8842: /* Intuos Pro and Cintiq Pro 3D Pen */ 724 723 tool_type = BTN_TOOL_PEN; 725 724 break; 726 725