Skip to content

Commit e31c8f1

Browse files
author
Bartosz Golaszewski
committed
Merge tag 'intel-gpio-v6.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel into gpio/for-current
intel-gpio for v6.16-2 * Add a quirk for Acer Nitro V15 against wakeup capability The following is an automated git shortlog grouped by driver: gpiolib: - acpi: Add a quirk for Acer Nitro V15
2 parents 347e9f5 + 9ab29ed commit e31c8f1

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

drivers/gpio/gpiolib-acpi-quirks.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,19 @@ static const struct dmi_system_id gpiolib_acpi_quirks[] __initconst = {
331331
.ignore_interrupt = "AMDI0030:00@11",
332332
},
333333
},
334+
{
335+
/*
336+
* Wakeup only works when keyboard backlight is turned off
337+
* https://gitlab.freedesktop.org/drm/amd/-/issues/4169
338+
*/
339+
.matches = {
340+
DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
341+
DMI_MATCH(DMI_PRODUCT_FAMILY, "Acer Nitro V 15"),
342+
},
343+
.driver_data = &(struct acpi_gpiolib_dmi_quirk) {
344+
.ignore_interrupt = "AMDI0030:00@8",
345+
},
346+
},
334347
{} /* Terminating entry */
335348
};
336349

0 commit comments

Comments
 (0)