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 <gianni.casagrande.mail@gmail.com> Signed-off-by: Tamim Khan <tamim@fusetak.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent c81bf14 commit 7c52c70

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

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)