Skip to content

Commit 1d29368

Browse files
flying-elephantsmb49
authored andcommitted
HID: wacom: Modify pen IDs
BugLink: https://bugs.launchpad.net/bugs/2078428 commit f0d17d696dfce77c9abc830e4ac2d677890a2dad upstream. 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: bfdc750 ("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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Koichiro Den <koichiro.den@canonical.com> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
1 parent f2e98ef commit 1d29368

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/hid/wacom_wac.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -714,13 +714,12 @@ static int wacom_intuos_get_tool_type(int tool_id)
714714
case 0x8e2: /* IntuosHT2 pen */
715715
case 0x022:
716716
case 0x200: /* Pro Pen 3 */
717-
case 0x04200: /* Pro Pen 3 */
718717
case 0x10842: /* MobileStudio Pro Pro Pen slim */
719718
case 0x14802: /* Intuos4/5 13HD/24HD Classic Pen */
720719
case 0x16802: /* Cintiq 13HD Pro Pen */
721720
case 0x18802: /* DTH2242 Pen */
722721
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 */
724723
tool_type = BTN_TOOL_PEN;
725724
break;
726725

0 commit comments

Comments
 (0)