From d321ee57e1fb54a5a154d658db0f3e1e82326f10 Mon Sep 17 00:00:00 2001 From: AceLan Kao Date: Wed, 10 Jul 2019 14:25:51 +0800 Subject: [PATCH] UBUNTU: SAUCE: i2c: designware: add Inpiron/Vostro 7590 into i2c quirk BugLink: https://bugs.launchpad.net/bugs/1836020 Add 2 more platforms which uses Goodix touchpad IC into i2c designware quirk to prevent touchpad from entering runtime suspend. Signed-off-by: AceLan Kao --- drivers/i2c/busses/i2c-designware-master.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/drivers/i2c/busses/i2c-designware-master.c b/drivers/i2c/busses/i2c-designware-master.c index 6ff73b20dc26..00a906ec43be 100644 --- a/drivers/i2c/busses/i2c-designware-master.c +++ b/drivers/i2c/busses/i2c-designware-master.c @@ -39,6 +39,13 @@ static const struct dmi_system_id i2c_dw_no_runtime_pm[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5391"), }, }, + { + .ident = "Dell Inspiron 7590", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7590"), + }, + }, { .ident = "Dell Vostro 5390", .matches = { @@ -53,6 +60,13 @@ static const struct dmi_system_id i2c_dw_no_runtime_pm[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 5391"), }, }, + { + .ident = "Dell Vostro 7590", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 7590"), + }, + }, { } }; -- 2.17.1