From: Tighe Donnelly <tighe.donnelly@xxxxxxxxxxxxxx> The IRQ is described as (Edge, ActiveLow, Shared, ) in ACPI DSDT and it's correct. The override makes the keyboard interrupt polarity inverted, resulting in non-functional keyboard. Add an entry for skipping the override. Cc: <stable@xxxxxxxxxxxxxxx> Signed-off-by: Tighe Donnelly <tighe.donnelly@xxxxxxxxxxxxxx> Signed-off-by: Chuanhong Guo <gch981213@xxxxxxxxx> --- Change since v1: new patch drivers/acpi/resource.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index b69c229b23dd..d9d8d546f340 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -407,6 +407,13 @@ static const struct dmi_system_id irq1_edge_low_shared[] = { DMI_MATCH(DMI_PRODUCT_NAME, "21D0"), }, }, + { + .ident = "Redmi Book Pro 15 2022", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TIMI"), + DMI_MATCH(DMI_BOARD_NAME, "TM2113"), + }, + }, { } }; -- 2.36.1