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 B4BF026B0BD; Thu, 13 Feb 2025 15:24:43 +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=1739460283; cv=none; b=J9ytvgyQectKhHYtFX4jpXIrFMWTQ9WOgmdcogTNt2A4e7OqgE+tKR0Fs6gqVVXI1oQ802f0eXRInhviD50cW35K53UecIpp20C7srOMIOHd83rYD4xRP7vySnWfUpabo1F6yNIr8MCl+jsXovV2bXCXLLPqDiaHoGFxVHd5zmk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739460283; c=relaxed/simple; bh=qZUkIslYwYfEeUVxaIptqUxE/Ldef6ajWvgosGRcHkQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=h/O9ImUI3TZqms0Lc8Z+FlQDFNp1Yb3zMkxfullyYzaIAlZn5CCv39OU3RgP7J2u6kZ7FkhF9TUA/Jlj8dK+Auo87gWfQYSQqSB1KHDIm9moxBgjtf+DzWeZZTMUQ8b1tPhgVEL/5hJLAwJFKLOFEL5J0BdObD2s4tJRnoPPdXc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=LN2l8c0+; 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="LN2l8c0+" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B4C56C4CED1; Thu, 13 Feb 2025 15:24:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1739460283; bh=qZUkIslYwYfEeUVxaIptqUxE/Ldef6ajWvgosGRcHkQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LN2l8c0+LhAtxgTbrloaHgEYqi/LFwS0gA02sgCprPf8LJ4azgBrNLHHJwm9KHxIh NkVWBtCrPn376kpRm3jqnuesUoJIJrR9X8IToxNgCRlZkgDaplrhh+Nvks/fgkiwIP 1vBAF7TwyeWWzzDbGV/e1nPk40Z2AQUC9wv9XbZQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Even Xu , Tatsunosuke Tobita , Ping Cheng , Jiri Kosina , Sasha Levin Subject: [PATCH 6.6 035/273] HID: Wacom: Add PCI Wacom device support Date: Thu, 13 Feb 2025 15:26:47 +0100 Message-ID: <20250213142408.745522199@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250213142407.354217048@linuxfoundation.org> References: <20250213142407.354217048@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: Even Xu [ Upstream commit c4c123504a65583e3689b3de04a61dc5272e453a ] Add PCI device ID of wacom device into driver support list. Signed-off-by: Even Xu Tested-by: Tatsunosuke Tobita Reviewed-by: Ping Cheng Signed-off-by: Jiri Kosina Signed-off-by: Sasha Levin --- drivers/hid/wacom_wac.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c index 33466c71c9da7..dd44373ba930e 100644 --- a/drivers/hid/wacom_wac.c +++ b/drivers/hid/wacom_wac.c @@ -4911,6 +4911,10 @@ static const struct wacom_features wacom_features_0x94 = HID_DEVICE(BUS_I2C, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\ .driver_data = (kernel_ulong_t)&wacom_features_##prod +#define PCI_DEVICE_WACOM(prod) \ + HID_DEVICE(BUS_PCI, HID_GROUP_WACOM, USB_VENDOR_ID_WACOM, prod),\ + .driver_data = (kernel_ulong_t)&wacom_features_##prod + #define USB_DEVICE_LENOVO(prod) \ HID_USB_DEVICE(USB_VENDOR_ID_LENOVO, prod), \ .driver_data = (kernel_ulong_t)&wacom_features_##prod @@ -5080,6 +5084,7 @@ const struct hid_device_id wacom_ids[] = { { USB_DEVICE_WACOM(HID_ANY_ID) }, { I2C_DEVICE_WACOM(HID_ANY_ID) }, + { PCI_DEVICE_WACOM(HID_ANY_ID) }, { BT_DEVICE_WACOM(HID_ANY_ID) }, { } }; -- 2.39.5