[PATCH] drivers: fix keyboard not working under some laptops

From: hqp1203
Date: Tue Mar 14 2023 - 02:31:29 EST


On that Linux kernel, my laptop's built-in keyboard isn't working. It is
suspected that the architecture of higher vresion of AMD's chip(the spec
ific CPU model is 7735h)conflicts with IRQ of the current Linux Kernel.
The solution is to add my laptop model number under drivers/acpi/resourc-
e.c to skip IRQ overrides. After modification, it was found that the key-
board worked properly.
My laptop model is the ASUS TUF Gaming A15, specifically FA507NV.

Signed-off-by: hqp1203 <hqp1203hqp@xxxxxxx>

要提交的变更:
修改: drivers/acpi/resource.c
---
linux-master/drivers/acpi/resource.c | 7 +++++++
1 file changed, 7 insertions(+)

diff --git a/linux-master/drivers/acpi/resource.c b/linux-master/drivers/acpi/resource.c
index 7c9125df5..0a4909dc1 100644
--- a/linux-master/drivers/acpi/resource.c
+++ b/linux-master/drivers/acpi/resource.c
@@ -453,6 +453,13 @@ static const struct dmi_system_id asus_laptop[] = {
DMI_MATCH(DMI_BOARD_NAME, "B2502CBA"),
},
},
+ {
+ .ident = "Asus TUF Gaming A15 FA507NV",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+ DMI_MATCH(DMI_BOARD_NAME, "FA507NV"),
+ },
+ },
{ }
};

--
2.39.2