Skip to content

Commit 65eb286

Browse files
hejsekvojtechrafaeljw
authored andcommitted
ACPI: resource: Skip IRQ override on Asus Expertbook B2402FBA
The Asus Expertbook B2502FBA has IRQ 1 described as Active_Low in its ACPI table. However, the kernel overrides this and sets it to Edge_High, which prevents the internal keyboard from working properly. Adding this laptop model to the override_table fixes the issue. Signed-off-by: Vojtech Hejsek <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 88af9b1 commit 65eb286

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/acpi/resource.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,13 @@ static const struct dmi_system_id asus_laptop[] = {
439439
DMI_MATCH(DMI_BOARD_NAME, "B2402CBA"),
440440
},
441441
},
442+
{
443+
.ident = "Asus ExpertBook B2402FBA",
444+
.matches = {
445+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
446+
DMI_MATCH(DMI_BOARD_NAME, "B2402FBA"),
447+
},
448+
},
442449
{
443450
.ident = "Asus ExpertBook B2502",
444451
.matches = {

0 commit comments

Comments
 (0)