On Tue, Jan 30, 2024 at 10:57 AM Nicolas Haye <nicolas.haye@xxxxxxxxx> wrote: > > From: n1coh <nicolas.haye@xxxxxxxxxxxxxxxxx> Why did you add this line? It is actively confusing, because the From: field in your message header matches the S-o-b below. > Like many b1502 models, > the b1502CVA keyboard doesn't work because of an ACPI DSDT table that describes IRQ 1 > as ActiveLow while the kernel overrides it to Edge_High. > > Signed-off-by: Nicolas Haye <nicolas.haye@xxxxxxxxx> > --- > drivers/acpi/resource.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c > index dacad1d846c0..65ce43ecfa8c 100644 > --- a/drivers/acpi/resource.c > +++ b/drivers/acpi/resource.c > @@ -468,6 +468,13 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = { > DMI_MATCH(DMI_BOARD_NAME, "B1502CGA"), > }, > }, > + { > + /* Asus ExpertBook B1502CVA */ > + .matches = { > + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), > + DMI_MATCH(DMI_BOARD_NAME, "B1502CVA"), > + }, > + }, > { > /* Asus ExpertBook B2402CBA */ > .matches = { > -- Applied as 6.9 material, thanks!