Message ID | 20240422080437.912886-1-wse@tuxedocomputers.com |
---|---|
State | New |
Headers | show |
Series | [v2] ACPI: resource: Do IRQ override on TongFang GXxHRXx and GMxHGxx | expand |
On Mon, Apr 22, 2024 at 10:04 AM Werner Sembach <wse@tuxedocomputers.com> wrote: > > From: Christoffer Sandberg <cs@tuxedo.de> > > Listed devices need the override for the keyboard to work. > > Signed-off-by: Christoffer Sandberg <cs@tuxedo.de> > Signed-off-by: Werner Sembach <wse@tuxedocomputers.com> > Cc: stable@vger.kernel.org > --- > drivers/acpi/resource.c | 12 ++++++++++++ > 1 file changed, 12 insertions(+) > > diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c > index 59423fe9d0f29..6cc8572759a3d 100644 > --- a/drivers/acpi/resource.c > +++ b/drivers/acpi/resource.c > @@ -630,6 +630,18 @@ static const struct dmi_system_id irq1_edge_low_force_override[] = { > DMI_MATCH(DMI_BOARD_NAME, "X565"), > }, > }, > + { > + /* TongFang GXxHRXx/TUXEDO InfinityBook Pro Gen9 AMD */ > + .matches = { > + DMI_MATCH(DMI_BOARD_NAME, "GXxHRXx"), > + }, > + }, > + { > + /* TongFang GMxHGxx/TUXEDO Stellaris Slim Gen1 AMD */ > + .matches = { > + DMI_MATCH(DMI_BOARD_NAME, "GMxHGxx"), > + }, > + }, > { } > }; > > -- Applied as 6.10 material, thanks!
diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index 59423fe9d0f29..6cc8572759a3d 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -630,6 +630,18 @@ static const struct dmi_system_id irq1_edge_low_force_override[] = { DMI_MATCH(DMI_BOARD_NAME, "X565"), }, }, + { + /* TongFang GXxHRXx/TUXEDO InfinityBook Pro Gen9 AMD */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GXxHRXx"), + }, + }, + { + /* TongFang GMxHGxx/TUXEDO Stellaris Slim Gen1 AMD */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GMxHGxx"), + }, + }, { } };