From: Carlo Caione <carlo@xxxxxxxxxxxx> On the ECS EF20EA laptop we need to move away from the AXP288 FG driver and enable again the ACPI AC/battery drivers. Add the required quirks to do that. We rely only on the product name because all the other DMI entries are dummy or not filled in on this platform. Signed-off-by: Carlo Caione <carlo@xxxxxxxxxxxx> --- drivers/acpi/ac.c | 7 +++++++ drivers/acpi/battery.c | 7 +++++++ drivers/power/supply/axp288_fuel_gauge.c | 6 ++++++ 3 files changed, 20 insertions(+) diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c index b9a4ca720309..39f778f954f5 100644 --- a/drivers/acpi/ac.c +++ b/drivers/acpi/ac.c @@ -332,6 +332,13 @@ static const struct dmi_system_id ac_dmi_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "32597CG"), }, }, + { + .callback = ac_not_use_pmic_quirk, + .ident = "ECS EF20EA", + .matches = { + DMI_MATCH(DMI_PRODUCT_NAME, "EF20EA"), + }, + }, {}, }; diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c index 258d2e66f230..fe024f1a8ad5 100644 --- a/drivers/acpi/battery.c +++ b/drivers/acpi/battery.c @@ -1233,6 +1233,13 @@ static const struct dmi_system_id bat_dmi_table[] __initconst = { DMI_MATCH(DMI_PRODUCT_NAME, "UX410UAK"), }, }, + { + .callback = battery_not_use_pmic_quirk, + .ident = "ECS EF20EA", + .matches = { + DMI_MATCH(DMI_PRODUCT_NAME, "EF20EA"), + }, + }, {}, }; diff --git a/drivers/power/supply/axp288_fuel_gauge.c b/drivers/power/supply/axp288_fuel_gauge.c index 4cc6e038dfdd..903891a9bcf0 100644 --- a/drivers/power/supply/axp288_fuel_gauge.c +++ b/drivers/power/supply/axp288_fuel_gauge.c @@ -708,6 +708,12 @@ static const struct dmi_system_id axp288_fuel_gauge_blacklist[] = { DMI_MATCH(DMI_BOARD_VERSION, "V1.1"), }, }, + { + /* ECS EF20EA */ + .matches = { + DMI_MATCH(DMI_PRODUCT_NAME, "EF20EA"), + }, + }, {} }; -- 2.14.1 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html