Skip to content

Commit 3a351de

Browse files
svkampenrafaeljw
authored andcommitted
ACPI: resource: Skip IRQ override on ASUS Vivobook Pro N6506CU
Just like the other Vivobooks here, the N6506CU has its keyboard IRQ described as ActiveLow in the DSDT, which the kernel overrides to EdgeHigh, causing the internal keyboard not to work. Add the N6506CU to the irq1_level_low_skip_override[] quirk table to fix this. Signed-off-by: Sam van Kampen <sam@tehsvk.net> Link: https://patch.msgid.link/20250829145221.2294784-2-sam@tehsvk.net Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent b320789 commit 3a351de

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
@@ -510,6 +510,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
510510
DMI_MATCH(DMI_BOARD_NAME, "N6506M"),
511511
},
512512
},
513+
{
514+
/* Asus Vivobook Pro N6506CU* */
515+
.matches = {
516+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
517+
DMI_MATCH(DMI_BOARD_NAME, "N6506CU"),
518+
},
519+
},
513520
{
514521
/* LG Electronics 17U70P */
515522
.matches = {

0 commit comments

Comments
 (0)