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 B8B742572 for ; Tue, 18 Apr 2023 12:53:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 402F8C433D2; Tue, 18 Apr 2023 12:53:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1681822410; bh=MeGy0MOALBiuRe8CcWLS3lryePjtmMT+QnPF+LdrO28=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gtbeAjM53eL9vdtPz2PP3RAMxl4d9fRdhoVsSUn9bElmmEMZ7Qn3I12H5qoBJtFGz Mog7llBz1pDQ+ZcwsNcejWPl5kVSrdVj+f8sxEvCsnDHYst/cVt8QxLCNjA6yjN1ir 84Etf0HXNsUnDjHuOVR68v/wr7hz68KxMr9HOFG8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Aymeric Wibo , "Rafael J. Wysocki" , Sasha Levin Subject: [PATCH 6.2 099/139] ACPI: resource: Add Medion S17413 to IRQ override quirk Date: Tue, 18 Apr 2023 14:22:44 +0200 Message-Id: <20230418120317.501407131@linuxfoundation.org> X-Mailer: git-send-email 2.40.0 In-Reply-To: <20230418120313.725598495@linuxfoundation.org> References: <20230418120313.725598495@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aymeric Wibo [ Upstream commit 2d0ab14634a26e54f8d6d231b47b7ef233e84599 ] Add DMI info of the Medion S17413 (board M1xA) to the IRQ override quirk table. This fixes the keyboard not working on these laptops. Link: https://bugzilla.kernel.org/show_bug.cgi?id=213031 Signed-off-by: Aymeric Wibo [ rjw: Fixed up white space ] Signed-off-by: Rafael J. Wysocki Signed-off-by: Sasha Levin --- drivers/acpi/resource.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index a222bda7e15b0..d08818baea88f 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -400,6 +400,13 @@ static const struct dmi_system_id medion_laptop[] = { DMI_MATCH(DMI_BOARD_NAME, "M17T"), }, }, + { + .ident = "MEDION S17413", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "MEDION"), + DMI_MATCH(DMI_BOARD_NAME, "M1xA"), + }, + }, { } }; -- 2.39.2