From patchwork Sat Jan 23 02:14:54 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Hung X-Patchwork-Id: 1430635 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4DN08H621jz9sT6; Sat, 23 Jan 2021 13:15:11 +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 1l38SC-0006LM-Py; Sat, 23 Jan 2021 02:15:08 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1l38SA-0006Ks-RV for kernel-team@lists.ubuntu.com; Sat, 23 Jan 2021 02:15:06 +0000 Received: from 2.general.alexhung.us.vpn ([10.172.65.255] helo=canonical.com) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1l38SA-0007uC-7T for kernel-team@lists.ubuntu.com; Sat, 23 Jan 2021 02:15:06 +0000 From: Alex Hung To: kernel-team@lists.ubuntu.com Subject: [PATCH 3/3][SRU][F] platform/x86: intel-hid: add Rocket Lake ACPI device ID Date: Fri, 22 Jan 2021 19:14:54 -0700 Message-Id: <20210123021454.54672-4-alex.hung@canonical.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210123021454.54672-1-alex.hung@canonical.com> References: <20210123021454.54672-1-alex.hung@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" Rocket Lake has a new ACPI ID for Intel HID event filter device. BugLink: https://bugs.launchpad.net/bugs/1907160 Signed-off-by: Alex Hung Link: https://lore.kernel.org/r/20201208020620.101455-1-alex.hung@canonical.com Signed-off-by: Hans de Goede (cherry picked from commit 7067be7059e8edc186474db9727c519da886a1ce) Signed-off-by: Alex Hung --- drivers/platform/x86/intel-hid.c | 1 + 1 file changed, 1 insertion(+) -- 2.25.1 diff --git a/drivers/platform/x86/intel-hid.c b/drivers/platform/x86/intel-hid.c index 6fdf064ba67f..bc6fd641a7bc 100644 --- a/drivers/platform/x86/intel-hid.c +++ b/drivers/platform/x86/intel-hid.c @@ -21,6 +21,7 @@ MODULE_AUTHOR("Alex Hung"); static const struct acpi_device_id intel_hid_ids[] = { {"INT33D5", 0}, {"INTC1051", 0}, + {"INTC1054", 0}, {"", 0}, };