Hi, On 8/18/23 14:39, Swapnil Devesh wrote: > This adds my laptop Lenovo Yoga 7 14ACN6, with Product Name: 82N7 (from `dmidecode -t1 | grep "Product Name"`) to the ec_trigger_quirk_dmi_table, have tested that this is required for the YMC driver to work correctly on this model. > > V3: Updated the subject to mention the driver being updated > V2: Sent again from the mail that is signing off on this and the previous push had the tabs removed messing up the formatting of the patch. > > Thanks to Gergo, the author of the Lenovo YMC driver for guiding this. > > Signed-off-by: Swapnil Devesh <me@xxxxxxxxxxxx> Thank you for your patch, I've applied this patch to my fixes branch: https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=fixes Note it will show up in my fixes branch once I've pushed my local branch there, which might take a while. I will include this patch in my next fixes pull-req to Linus for the current kernel development cycle. Regards, Hans > --- > drivers/platform/x86/lenovo-ymc.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/platform/x86/lenovo-ymc.c b/drivers/platform/x86/lenovo-ymc.c > index 41676188b373..7d38151a5b27 100644 > --- a/drivers/platform/x86/lenovo-ymc.c > +++ b/drivers/platform/x86/lenovo-ymc.c > @@ -32,6 +32,13 @@ static const struct dmi_system_id ec_trigger_quirk_dmi_table[] = { > DMI_MATCH(DMI_PRODUCT_NAME, "82QF"), > }, > }, > + { > + /* Lenovo Yoga 7 14ACN6 */ > + .matches = { > + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), > + DMI_MATCH(DMI_PRODUCT_NAME, "82N7"), > + }, > + }, > { } > }; >