Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit e2e7f03

Browse files
fusetakrafaeljw
authored andcommitted
ACPI: resource: Skip IRQ override on Asus Vivobook Pro N6506MJ
Similar to other Asus Vivobooks, the Asus Vivobook Pro N6506MJ has a DSDT table that describes IRQ 1 as ActiveLow, whereas the kernel overrides it to Edge_High. This discrepancy prevents the internal keyboard from functioning properly. This patch resolves this issue by adding this laptop to the override table that prevents the kernel from overriding this IRQ. Link: https://bugzilla.kernel.org/show_bug.cgi?id=218929 Tested-by: Amber Connelly <amb3r.dev@gmail.com> Signed-off-by: Tamim Khan <tamim@fusetak.com> Link: https://patch.msgid.link/20240708000557.83539-1-tamim@fusetak.com Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent dc41751 commit e2e7f03

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
@@ -531,6 +531,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
531531
DMI_MATCH(DMI_BOARD_NAME, "N6506MU"),
532532
},
533533
},
534+
{
535+
/* Asus Vivobook Pro N6506MJ */
536+
.matches = {
537+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
538+
DMI_MATCH(DMI_BOARD_NAME, "N6506MJ"),
539+
},
540+
},
534541
{
535542
/* LG Electronics 17U70P */
536543
.matches = {

0 commit comments

Comments
 (0)