This is a note to let you know that I've just added the patch titled ACPI: EC: Add quirk for the HP Pavilion Gaming 15-dk1xxx to the 6.1-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: acpi-ec-add-quirk-for-the-hp-pavilion-gaming-15-dk1xxx.patch and it can be found in the queue-6.1 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From cd4aece493f99f95d41edcce32927d70a5dde923 Mon Sep 17 00:00:00 2001 From: Hans de Goede <hdegoede@xxxxxxxxxx> Date: Wed, 20 Sep 2023 15:05:06 +0200 Subject: ACPI: EC: Add quirk for the HP Pavilion Gaming 15-dk1xxx From: Hans de Goede <hdegoede@xxxxxxxxxx> commit cd4aece493f99f95d41edcce32927d70a5dde923 upstream. Added GPE quirk entry for the HP Pavilion Gaming 15-dk1xxx. There is a quirk entry for 2 15-c..... laptops, this is for a new version which has 15-dk1xxx as identifier. This fixes the LID switch and rfkill and brightness hotkeys not working. Closes: https://github.com/systemd/systemd/issues/28942 Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/acpi/ec.c | 11 +++++++++++ 1 file changed, 11 insertions(+) --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c @@ -1888,6 +1888,17 @@ static const struct dmi_system_id ec_dmi }, { /* + * HP Pavilion Gaming Laptop 15-dk1xxx + * https://github.com/systemd/systemd/issues/28942 + */ + .callback = ec_honor_dsdt_gpe, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "HP"), + DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Gaming Laptop 15-dk1xxx"), + }, + }, + { + /* * Samsung hardware * https://bugzilla.kernel.org/show_bug.cgi?id=44161 */ Patches currently in stable-queue which might be from hdegoede@xxxxxxxxxx are queue-6.1/acpi-resource-skip-irq-override-on-asus-expertbook-b1402cba.patch queue-6.1/acpi-ec-add-quirk-for-the-hp-pavilion-gaming-15-dk1xxx.patch queue-6.1/platform-x86-think-lmi-fix-reference-leak.patch queue-6.1/input-goodix-ensure-int-gpio-is-in-input-for-gpio_count-1-gpio_int_idx-0-case.patch queue-6.1/platform-x86-hp-wmi-mark-driver-struct-with-__refdat.patch queue-6.1/hid-logitech-hidpp-fix-kernel-crash-on-receiver-usb-disconnect.patch