Message ID | 20231016160828.373599-1-wse@tuxedocomputers.com |
---|---|
State | Accepted |
Commit | 0da9eccde3270b832c059ad618bf66e510c75d33 |
Headers | show |
Series | [v2] ACPI: resource: Do IRQ override on TongFang GMxXGxx | expand |
diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index 18f6353c142e..15a3bdbd0755 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -497,6 +497,18 @@ static const struct dmi_system_id irq1_edge_low_force_override[] = { DMI_MATCH(DMI_BOARD_NAME, "GMxRGxx"), }, }, + { + /* TongFang GMxXGxx/TUXEDO Polaris 15 Gen5 AMD */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GMxXGxx"), + }, + }, + { + /* TongFang GM6XGxX/TUXEDO Stellaris 16 Gen5 AMD */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GM6XGxX"), + }, + }, { /* MAINGEAR Vector Pro 2 15 */ .matches = {
The TongFang GMxXGxx/TUXEDO Stellaris/Pollaris Gen5 needs IRQ overriding for the keyboard to work. Adding an entry for this laptop to the override_table makes the internal keyboard functional. v2: Rebase onto linux-next Signed-off-by: Werner Sembach <wse@tuxedocomputers.com> Cc: <stable@vger.kernel.org> --- drivers/acpi/resource.c | 12 ++++++++++++ 1 file changed, 12 insertions(+)