On Fri, Dec 20, 2024 at 7:14 PM Hans de Goede <hdegoede@xxxxxxxxxx> wrote: > > Like the Vivobook X1704VAP the X1504VAP has its keyboard IRQ (1) described > as ActiveLow in the DSDT, which the kernel overrides to EdgeHigh which > breaks the keyboard. > > Add the X1504VAP to the irq1_level_low_skip_override[] quirk table to fix > this. > > Closes: https://bugzilla.kernel.org/show_bug.cgi?id=219224 > Cc: stable@xxxxxxxxxxxxxxx > Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx> > --- > drivers/acpi/resource.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c > index 821867de43be..ab4c0e0b6b8e 100644 > --- a/drivers/acpi/resource.c > +++ b/drivers/acpi/resource.c > @@ -440,6 +440,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = { > DMI_MATCH(DMI_BOARD_NAME, "S5602ZA"), > }, > }, > + { > + /* Asus Vivobook X1504VAP */ > + .matches = { > + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), > + DMI_MATCH(DMI_BOARD_NAME, "X1504VAP"), > + }, > + }, > { > /* Asus Vivobook X1704VAP */ > .matches = { > -- Applied as 6.13-rc material, thanks!