Skip to content

Commit ef75040

Browse files
carlocaionerafaeljw
authored andcommitted
ACPI / EC: Add quirk for GL720VMK
ASUS GL720VMK is also affected by the EC GPE preference issue. Signed-off-by: Carlo Caione <[email protected]> Signed-off-by: Lv Zheng <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 440f53d commit ef75040

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

drivers/acpi/ec.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1781,7 +1781,7 @@ static int ec_correct_ecdt(const struct dmi_system_id *id)
17811781

17821782
/*
17831783
* Some DSDTs contain wrong GPE setting.
1784-
* Asus FX502VD/VE, X550VXK, X580VD
1784+
* Asus FX502VD/VE, GL702VMK, X550VXK, X580VD
17851785
* https://bugzilla.kernel.org/show_bug.cgi?id=195651
17861786
*/
17871787
static int ec_honor_ecdt_gpe(const struct dmi_system_id *id)
@@ -1805,6 +1805,10 @@ static struct dmi_system_id ec_dmi_table[] __initdata = {
18051805
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
18061806
DMI_MATCH(DMI_PRODUCT_NAME, "FX502VE"),}, NULL},
18071807
{
1808+
ec_honor_ecdt_gpe, "ASUS GL702VMK", {
1809+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
1810+
DMI_MATCH(DMI_PRODUCT_NAME, "GL702VMK"),}, NULL},
1811+
{
18081812
ec_honor_ecdt_gpe, "ASUS X550VXK", {
18091813
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
18101814
DMI_MATCH(DMI_PRODUCT_NAME, "X550VXK"),}, NULL},

0 commit comments

Comments
 (0)