diff options
author | 2022-12-08 17:39:45 +0100 | |
---|---|---|
committer | 2022-12-08 17:39:45 +0100 | |
commit | 0634033dd104da8bf3903ff9b7f57ae81c6e1640 (patch) | |
tree | 5fd9320bfcbd5f7170af6ccacdbfdc2abcc38b82 | |
parent | ACPICA: Allow address_space_handler Install and _REG execution as 2 separate steps (diff) | |
parent | ACPI: EC: Add quirk for the HP Pavilion Gaming 15-cx0041ur (diff) | |
download | wireguard-linux-0634033dd104da8bf3903ff9b7f57ae81c6e1640.tar.xz wireguard-linux-0634033dd104da8bf3903ff9b7f57ae81c6e1640.zip |
Merge back ACPI EC changes for 6.2-rc1
-rw-r--r-- | drivers/acpi/ec.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index 9b42628cf21b..9751b84c1b22 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c @@ -1877,6 +1877,16 @@ static const struct dmi_system_id ec_dmi_table[] __initconst = { }, { /* + * HP Pavilion Gaming Laptop 15-cx0041ur + */ + .callback = ec_honor_dsdt_gpe, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "HP"), + DMI_MATCH(DMI_PRODUCT_NAME, "HP 15-cx0041ur"), + }, + }, + { + /* * Samsung hardware * https://bugzilla.kernel.org/show_bug.cgi?id=44161 */ |