Skip to content

Commit 7c52c70

Browse files
fusetakrafaeljw
authored andcommitted
ACPI: resource: Skip IRQ override on Asus Vivobook Pro N6506MV
Like various other Asus Vivobook and Expertbook 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=218745 Tested-by: Gianni <[email protected]> Signed-off-by: Tamim Khan <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent c81bf14 commit 7c52c70

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
@@ -517,6 +517,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
517517
DMI_MATCH(DMI_BOARD_NAME, "E1504GAB"),
518518
},
519519
},
520+
{
521+
/* Asus Vivobook Pro N6506MV */
522+
.matches = {
523+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
524+
DMI_MATCH(DMI_BOARD_NAME, "N6506MV"),
525+
},
526+
},
520527
{
521528
/* LG Electronics 17U70P */
522529
.matches = {

0 commit comments

Comments
 (0)