This is a note to let you know that I've just added the patch titled platform/x86: lenovo-ymc: Add Lenovo Yoga 7 14ACN6 to ec_trigger_quirk_dmi_table to the 6.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: platform-x86-lenovo-ymc-add-lenovo-yoga-7-14acn6-to-ec_trigger_quirk_dmi_table.patch and it can be found in the queue-6.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From db35610a181c18f7a521a2e157f7acdef7ce425f Mon Sep 17 00:00:00 2001 From: Swapnil Devesh <me@xxxxxxxxxxxx> Date: Fri, 18 Aug 2023 18:09:47 +0530 Subject: platform/x86: lenovo-ymc: Add Lenovo Yoga 7 14ACN6 to ec_trigger_quirk_dmi_table MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Swapnil Devesh <me@xxxxxxxxxxxx> commit db35610a181c18f7a521a2e157f7acdef7ce425f upstream. 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. Signed-off-by: Swapnil Devesh <me@xxxxxxxxxxxx> Reviewed-by: Gergő Köteles <soyer@xxxxxx> Link: https://lore.kernel.org/r/18a08a8b173.895ef3b250414.1213194126082324071@xxxxxxxxxxxx Reviewed-by: Hans de Goede <hdegoede@xxxxxxxxxx> Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/platform/x86/lenovo-ymc.c | 7 +++++++ 1 file changed, 7 insertions(+) --- a/drivers/platform/x86/lenovo-ymc.c +++ b/drivers/platform/x86/lenovo-ymc.c @@ -36,6 +36,13 @@ static const struct dmi_system_id ec_tri DMI_MATCH(DMI_PRODUCT_NAME, "82QF"), }, }, + { + /* Lenovo Yoga 7 14ACN6 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "82N7"), + }, + }, { } }; Patches currently in stable-queue which might be from me@xxxxxxxxxxxx are queue-6.4/platform-x86-lenovo-ymc-add-lenovo-yoga-7-14acn6-to-ec_trigger_quirk_dmi_table.patch