On Thu, Oct 28, 2021 at 3:44 PM <zhoubinbin@xxxxxxxxxxxxx> wrote: > > From: Binbin Zhou <zhoubinbin@xxxxxxxxxxxxx> > > EC interrupts constantly wake up system from s2idle. > So make ec_no_wakeup be true as default to keep system in s2idle mode > and reduce power consumption. > > Signed-off-by: Binbin Zhou <zhoubinbin@xxxxxxxxxxxxx> > --- > drivers/acpi/ec.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c > index e629e891d1bb..7c32da8f51ed 100644 > --- a/drivers/acpi/ec.c > +++ b/drivers/acpi/ec.c > @@ -2152,6 +2152,13 @@ static const struct dmi_system_id acpi_ec_no_wakeup[] = { > DMI_MATCH(DMI_PRODUCT_FAMILY, "ThinkPad X1 Yoga 3rd"), > }, > }, > + { > + .ident = "HP ZHAN 66 Pro", > + .matches = { > + DMI_MATCH(DMI_SYS_VENDOR, "HP"), > + DMI_MATCH(DMI_PRODUCT_FAMILY, "103C_5336AN HP ZHAN 66 Pro"), > + }, > + }, > { }, > }; > > -- Applied as 5.16-rc material with some edits in the subject and changelog, thanks!