Skip to content

Commit d2aaf19

Browse files
benmayo10rafaeljw
authored andcommitted
ACPI: resource: Add DMI quirks for ASUS Vivobook E1504GA and E1504GAB
Asus Vivobook E1504GA and E1504GAB notebooks are affected by bug #216158 (DSDT specifies the kbd IRQ as level active-low and using the override changes this to rising edge, stopping the keyboard from working). Users of these notebooks do not have a working keyboard unless they add their DMI information to the struct irq1_level_low_skip_override array and compile a custom kernel. Add support for these computers to the Linux kernel without requiring the end-user to recompile the kernel. Link: https://bugzilla.kernel.org/show_bug.cgi?id=216158 Signed-off-by: Ben Mayo <benny1091@gmail.com> [ rjw: Link tag, subject and changelog edits ] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent e2605d4 commit d2aaf19

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

drivers/acpi/resource.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,20 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
482482
DMI_MATCH(DMI_BOARD_NAME, "B2502CBA"),
483483
},
484484
},
485+
{
486+
/* Asus Vivobook E1504GA */
487+
.matches = {
488+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
489+
DMI_MATCH(DMI_BOARD_NAME, "E1504GA"),
490+
},
491+
},
492+
{
493+
/* Asus Vivobook E1504GAB */
494+
.matches = {
495+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
496+
DMI_MATCH(DMI_BOARD_NAME, "E1504GAB"),
497+
},
498+
},
485499
{
486500
/* LG Electronics 17U70P */
487501
.matches = {

0 commit comments

Comments
 (0)