Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPI: resource: Do IRQ override on TongFang GXxHRXx and GMxHGxx

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: All applicable <stable@vger.kernel.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Christoffer Sandberg and committed by
Rafael J. Wysocki
c81bf14f 6eaf375a

+12
+12
drivers/acpi/resource.c
··· 636 636 DMI_MATCH(DMI_BOARD_NAME, "X565"), 637 637 }, 638 638 }, 639 + { 640 + /* TongFang GXxHRXx/TUXEDO InfinityBook Pro Gen9 AMD */ 641 + .matches = { 642 + DMI_MATCH(DMI_BOARD_NAME, "GXxHRXx"), 643 + }, 644 + }, 645 + { 646 + /* TongFang GMxHGxx/TUXEDO Stellaris Slim Gen1 AMD */ 647 + .matches = { 648 + DMI_MATCH(DMI_BOARD_NAME, "GMxHGxx"), 649 + }, 650 + }, 639 651 { } 640 652 }; 641 653