From patchwork Wed Nov 2 07:54:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ivan Hu X-Patchwork-Id: 1698022 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: legolas.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=canonical.com header.i=@canonical.com header.a=rsa-sha256 header.s=20210705 header.b=KJutBjVn; dkim-atps=neutral Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4N2K0n0h8zz23lK for ; Wed, 2 Nov 2022 18:54:31 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1oq8Zq-00089B-4C; Wed, 02 Nov 2022 07:54:22 +0000 Received: from smtp-relay-canonical-0.internal ([10.131.114.83] helo=smtp-relay-canonical-0.canonical.com) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1oq8Zo-00088j-AC for kernel-team@lists.ubuntu.com; Wed, 02 Nov 2022 07:54:20 +0000 Received: from canonical.com (unknown [10.101.194.165]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-0.canonical.com (Postfix) with ESMTPSA id AB461422D4 for ; Wed, 2 Nov 2022 07:54:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1667375657; bh=JWsEe4aLTCkPj+TXTHbMbXr6wYWaRK5lrOlsHygI1DI=; h=From:To:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=KJutBjVnBuwvZ3QL2hRNqCyUIQhhii22x/K4Lp/Ago57zHdHaKf0QALb0h6Heeys4 jHrZSZlD69jwJ7TnEHAf2RTtYCg5jFkA6IaZAIKehkl+W3VHV8hgC2v5fZjL9DX2/j kc+hYg9RRi615/WrAl6W9mPFylAwIGboHN1Gk0cFTF3uqaxG3G6j/Gi5r4IEGdnsLN s7iG78XOH6Yp+Fg4XsEfTyP4Dcw2Ojtzzmzho6HUDTEqnn0H930JoiCgpeiBWNzPRY sYKsLQ1yGov4COVckvWdAWmlOtE5jYtghVdSvqL43UkpdATa8pKzIDLFngLsgWmsd7 qHdO5KXtFegXA== From: Ivan Hu To: kernel-team@lists.ubuntu.com Subject: [PATCH 1/1] [SRU][OEM-6.0/OEM-5.17] UBUNTU: SAUCE: platform/x86/intel: hid: add some ACPI device IDs Date: Wed, 2 Nov 2022 15:54:03 +0800 Message-Id: <20221102075403.4139-2-ivan.hu@canonical.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20221102075403.4139-1-ivan.hu@canonical.com> References: <20221102075403.4139-1-ivan.hu@canonical.com> MIME-Version: 1.0 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" BugLink: https://bugs.launchpad.net/oem-priority/+bug/1995453 Add INTC1076 (JasonLake), INTC1077 (MeteorLake) and INTC1078 (RaptorLake) devices IDs. Signed-off-by: Ivan Hu --- drivers/platform/x86/intel/hid.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/platform/x86/intel/hid.c b/drivers/platform/x86/intel/hid.c index 53252ecfa7cf..fef075b0f206 100644 --- a/drivers/platform/x86/intel/hid.c +++ b/drivers/platform/x86/intel/hid.c @@ -27,6 +27,9 @@ static const struct acpi_device_id intel_hid_ids[] = { {"INTC1051", 0}, {"INTC1054", 0}, {"INTC1070", 0}, + {"INTC1076", 0}, + {"INTC1077", 0}, + {"INTC1078", 0}, {"", 0}, }; MODULE_DEVICE_TABLE(acpi, intel_hid_ids);