Skip to content

Commit 7203481

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: resource: Add Asus ExpertBook B2502 to Asus quirks
The Asus ExpertBook B2502 has the same keyboard issue as Asus Vivobook K3402ZA/K3502ZA. The kernel overrides IRQ 1 to Edge_High when it should be Active_Low. This patch adds the ExpertBook B2502 model to the existing quirk list of Asus laptops with this issue. Fixes: b5f9223 ("ACPI: resource: Skip IRQ override on Asus Vivobook S5602ZA") Link: https://bugzilla.redhat.com/show_bug.cgi?id=2142574 Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent f3cb9b7 commit 7203481

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
@@ -432,6 +432,13 @@ static const struct dmi_system_id asus_laptop[] = {
432432
DMI_MATCH(DMI_BOARD_NAME, "S5602ZA"),
433433
},
434434
},
435+
{
436+
.ident = "Asus ExpertBook B2502",
437+
.matches = {
438+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
439+
DMI_MATCH(DMI_BOARD_NAME, "B2502CBA"),
440+
},
441+
},
435442
{ }
436443
};
437444

0 commit comments

Comments
 (0)