Skip to content

Commit dc41751

Browse files
fusetakrafaeljw
authored andcommitted
ACPI: resource: Skip IRQ override on Asus Vivobook Pro N6506MU
Like various other Asus laptops, the Asus Vivobook Pro N6506MV has a DSDT table that describes IRQ 1 as ActiveLow while the kernel is overriding it to Edge_High. This prevents the internal keyboard from working. This patch prevents 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=218954 Tested-by: Lefteris <[email protected]> Signed-off-by: Tamim Khan <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 22a40d1 commit dc41751

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
@@ -524,6 +524,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
524524
DMI_MATCH(DMI_BOARD_NAME, "N6506MV"),
525525
},
526526
},
527+
{
528+
/* Asus Vivobook Pro N6506MU */
529+
.matches = {
530+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
531+
DMI_MATCH(DMI_BOARD_NAME, "N6506MU"),
532+
},
533+
},
527534
{
528535
/* LG Electronics 17U70P */
529536
.matches = {

0 commit comments

Comments
 (0)