From a2426add47bf8410539f75f360187d5d2c780048 Mon Sep 17 00:00:00 2001 From: AceLan Kao Date: Wed, 17 Jul 2019 13:57:17 +0800 Subject: [PATCH 1/1][SRU][OEM-OSP1-B] UBUNTU: SAUCE: i2c: designware: add G3 3590 into i2c quirk BugLink: https://bugs.launchpad.net/bugs/1836836 Add one missing platform 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 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/i2c/busses/i2c-designware-master.c b/drivers/i2c/busses/i2c-designware-master.c index d1063ef81ac6..53225b4263e8 100644 --- a/drivers/i2c/busses/i2c-designware-master.c +++ b/drivers/i2c/busses/i2c-designware-master.c @@ -74,6 +74,13 @@ static const struct dmi_system_id i2c_dw_no_runtime_pm[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 7590"), }, }, + { + .ident = "Dell G3 3590", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "G3 3590"), + }, + }, { } }; -- 2.17.1