From patchwork Thu Nov 11 02:47:12 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hui Wang X-Patchwork-Id: 1553726 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: bilbo.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=ZFFr/V5H; dkim-atps=neutral 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 bilbo.ozlabs.org (Postfix) with ESMTPS id 4HqR3B60YLz9sR4 for ; Thu, 11 Nov 2021 13:47:49 +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 1ml07m-0004wp-Jg; Thu, 11 Nov 2021 02:47:38 +0000 Received: from smtp-relay-canonical-1.internal ([10.131.114.174] helo=smtp-relay-canonical-1.canonical.com) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1ml07k-0004vm-AL for kernel-team@lists.ubuntu.com; Thu, 11 Nov 2021 02:47:36 +0000 Received: from localhost.localdomain (1.general.hwang4.us.vpn [10.172.67.16]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id CE9023F0FE for ; Thu, 11 Nov 2021 02:47:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1636598856; bh=3Sb9lvhcVm3BmE2gTf6PEhqHOCFcblBs6DEaBtWWTQw=; h=From:To:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=ZFFr/V5HpI7Weu7reYF7NUjAvV/dfmMvKhrLlRX3UCY4Dc/BBc5lBlMTYc12pc/CE mEaUA8Zhjpi1R7CS0fd6T/AJo/C509D3HAndza4RQbVAleKUa+NrFTf30mmNU93YwK pHdeUPMfBWCI89H5AwOJDJXuYM54eZRqayPzRLTIJFevzBgilYHFgdnyvKubQU3ixj G4BoVX9F1sL1e6O5bkjB28xg7BGxRU6kL7JLSNPgSw13z4XqUlMSSR+y/F6IqEQmoc ZeJaATV0xo71m0oWAY/b1ML+QGcfUlMTkGx4asQWyJs5mY3HNUHWBNyLZGfCb2fVyq UCkQk4K4xCZvQ== From: Hui Wang To: kernel-team@lists.ubuntu.com Subject: [SRU][F/H/I/J][PATCH 2/2] ACPI: resources: Add one more Medion model in IRQ override quirk Date: Thu, 11 Nov 2021 10:47:12 +0800 Message-Id: <20211111024712.9630-3-hui.wang@canonical.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211111024712.9630-1-hui.wang@canonical.com> References: <20211111024712.9630-1-hui.wang@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/bugs/1950536 The Medion s17 series laptops have the same issue on the keyboard as the s15 series, if skipping to call acpi_get_override_irq(), the keyboard could work well. So put the DMI info of s17 series in the IRQ override quirk table as well. BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=213031 Tested-by: dirksche Signed-off-by: Hui Wang Signed-off-by: Rafael J. Wysocki (cherry picked from commit 1b26ae40092b43bb6e9c5df376227382b390b953) Signed-off-by: Hui Wang --- drivers/acpi/resource.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index 7bf38652e6ac..3c25ce8c95ba 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -389,6 +389,13 @@ static const struct dmi_system_id medion_laptop[] = { DMI_MATCH(DMI_BOARD_NAME, "M15T"), }, }, + { + .ident = "MEDION S17405", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "MEDION"), + DMI_MATCH(DMI_BOARD_NAME, "M17T"), + }, + }, { } };