On Tue, Sep 3, 2024 at 3:43 AM Tamim Khan <tamim@xxxxxxxxxxx> wrote: > > Like other Asus Vivobooks, the Asus Vivobook Go E1404GAB has a DSDT > that describes IRQ 1 as ActiveLow, while the kernel overrides to Edge_High. > This override prevents the internal keyboard from working. This patch fixes > this problem by adding this laptop to the table that prevents the kernel from > overriding the IRQ. > > Link: https://bugzilla.kernel.org/show_bug.cgi?id=219212 > Signed-off-by: Tamim Khan <tamim@xxxxxxxxxxx> > --- > drivers/acpi/resource.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c > index df5d5a554b38..c65c72c515e6 100644 > --- a/drivers/acpi/resource.c > +++ b/drivers/acpi/resource.c > @@ -503,6 +503,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = { > DMI_MATCH(DMI_BOARD_NAME, "B2502FBA"), > }, > }, > + { > + /* Asus Vivobook Go E1404GAB */ > + .matches = { > + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), > + DMI_MATCH(DMI_BOARD_NAME, "E1404GAB"), > + }, > + }, > { > /* Asus Vivobook E1504GA */ > .matches = { > -- Applied as 6.12 material, thanks!