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 C4BA02572 for ; Tue, 18 Apr 2023 12:45:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4A017C433D2; Tue, 18 Apr 2023 12:45:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1681821926; bh=MeGy0MOALBiuRe8CcWLS3lryePjtmMT+QnPF+LdrO28=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FKVUnn6nTrgW5oop7s/JKJ6KSWcsnmGi/gYzXr23p3LWKXfBRe6RXaVjmjoJUWp7z FVlqPDYY+2JU+L9EjOXluu6UHcSvxKhbdWccIwJl3jXq++2Db305ml32aOs5aPX7Ru ULNcpKYWBL3c9QiKP3MmihDpTQKDfAWf4tfL3wGU= 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.1 093/134] ACPI: resource: Add Medion S17413 to IRQ override quirk Date: Tue, 18 Apr 2023 14:22:29 +0200 Message-Id: <20230418120316.411800423@linuxfoundation.org> X-Mailer: git-send-email 2.40.0 In-Reply-To: <20230418120313.001025904@linuxfoundation.org> References: <20230418120313.001025904@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