From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 61E223054E7; Tue, 2 Sep 2025 13:38:25 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756820305; cv=none; b=Ho7B+cizphRzR+bFV+aI7QvSYLDJ6y9T8bh5YwgF9LwCexPxrfcFhqe0x/b1KbbJ4/xCu0Jtvc1Egkq2iro71u6m+LRG+fcMVNbdY/zSAbvDsLWOU+aq5xLpEHaQCVivsext/F03z+JxKSH1CvHUyCyPV6G1KNPqq0T/zDQIQRI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756820305; c=relaxed/simple; bh=jAtvYkQtLBcvLdj3ROgynMPS3pS2UkqtUmiPuhKe71o=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MpqVI0R1+XwOBC+KKwB5bxeP8FyRznx9oN18ppgvCls654/O11guX0d8VFwTQ+K4cSFKgQZmQDhcqAdam9AxbNmbtguPTZ5TNXXBsa+TNhRZBDr45xar/GhDDIwUcKyu0h77B8P1uQOu0ZNeTIZ+Sucs1zsrSiDZk0QQmIAPWDQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=gLD2UwIv; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="gLD2UwIv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5EA20C4CEED; Tue, 2 Sep 2025 13:38:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1756820304; bh=jAtvYkQtLBcvLdj3ROgynMPS3pS2UkqtUmiPuhKe71o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gLD2UwIvv22Gff+UpADTiMBQsjLgFdm9y9PiYgap7sZMIoE6Qb5znmW9zKy72i6na JFMu11oz9WjcVgPFpuy9vjSiDjKAvcOJDuzTm7UDQwpGDC7ZcOonLSZNPyDez7zwA0 P4OZ2QEF53xF87/Hj9ptKnOPxgAv8clxA6qS7jOA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ping Cheng , Jiri Kosina Subject: [PATCH 6.6 62/75] HID: wacom: Add a new Art Pen 2 Date: Tue, 2 Sep 2025 15:21:14 +0200 Message-ID: <20250902131937.548780156@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250902131935.107897242@linuxfoundation.org> References: <20250902131935.107897242@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ping Cheng commit 9fc51941d9e7793da969b2c66e6f8213c5b1237f upstream. Signed-off-by: Ping Cheng Signed-off-by: Jiri Kosina Signed-off-by: Greg Kroah-Hartman --- drivers/hid/wacom_wac.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/hid/wacom_wac.c +++ b/drivers/hid/wacom_wac.c @@ -684,6 +684,7 @@ static bool wacom_is_art_pen(int tool_id case 0x885: /* Intuos3 Marker Pen */ case 0x804: /* Intuos4/5 13HD/24HD Marker Pen */ case 0x10804: /* Intuos4/5 13HD/24HD Art Pen */ + case 0x204: /* Art Pen 2 */ is_art_pen = true; break; }