diff options
author | Sviatoslav Harasymchuk <[email protected]> | 2024-02-11 01:08:07 +0100 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2024-02-15 20:49:38 +0100 |
commit | 0793e511c4c66c38dd26add86f7236bcdc70c3b5 (patch) | |
tree | 9776dc8f7e7a8f47fcdb27789edc58bfd7729984 | |
parent | ca3afc2806046f626a1518f160a564b90f141f95 (diff) |
ACPI: resource: Add IRQ override quirk for ASUS ExpertBook B2502FBA
In order to fix the keyboard on ASUS ExpertBook B2502FBA, add an IRQ override
quirk for it in analogy with how it was done for other members of this machine
family.
Link: https://lore.kernel.org/linux-acpi/[email protected]
Link: https://bugzilla.kernel.org/show_bug.cgi?id=217323
Signed-off-by: Sviatoslav Harasymchuk <[email protected]>
[ rjw: Subject and changelog rewrite, fix broken white space ]
Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r-- | drivers/acpi/resource.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index 65ce43ecfa8c..c99b0cf5e22e 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -497,6 +497,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = { }, }, { + /* Asus ExpertBook B2502FBA */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "B2502FBA"), + }, + }, + { /* Asus Vivobook E1504GA */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), |