Patch "ACPI: resource: Add DMI quirks for ASUS Vivobook E1504GA and E1504GAB" has been added to the 6.7-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    ACPI: resource: Add DMI quirks for ASUS Vivobook E1504GA and E1504GAB

to the 6.7-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     acpi-resource-add-dmi-quirks-for-asus-vivobook-e1504.patch
and it can be found in the queue-6.7 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 3b73ba0d025a708d4c6fe9e20b7534059a32fcbb
Author: Ben Mayo <benny1091@xxxxxxxxx>
Date:   Sat Jan 6 21:13:23 2024 -0500

    ACPI: resource: Add DMI quirks for ASUS Vivobook E1504GA and E1504GAB
    
    [ Upstream commit d2aaf19965045f70bb2ece514399cdc6fcce2e73 ]
    
    Asus Vivobook E1504GA and E1504GAB notebooks are affected by bug #216158
    (DSDT specifies the kbd IRQ as level active-low and using the override
    changes this to rising edge, stopping the keyboard from working).
    
    Users of these notebooks do not have a working keyboard unless they add
    their DMI information to the struct irq1_level_low_skip_override array
    and compile a custom kernel.
    
    Add support for these computers to the Linux kernel without requiring
    the end-user to recompile the kernel.
    
    Link: https://bugzilla.kernel.org/show_bug.cgi?id=216158
    Signed-off-by: Ben Mayo <benny1091@xxxxxxxxx>
    [ rjw: Link tag, subject and changelog edits ]
    Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
index c3536c236be9..7d58d8b4ca76 100644
--- a/drivers/acpi/resource.c
+++ b/drivers/acpi/resource.c
@@ -482,6 +482,20 @@ static const struct dmi_system_id irq1_level_low_skip_override[] = {
 			DMI_MATCH(DMI_BOARD_NAME, "B2502CBA"),
 		},
 	},
+	{
+		/* Asus Vivobook E1504GA */
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+			DMI_MATCH(DMI_BOARD_NAME, "E1504GA"),
+		},
+	},
+	{
+		/* Asus Vivobook E1504GAB */
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+			DMI_MATCH(DMI_BOARD_NAME, "E1504GAB"),
+		},
+	},
 	{
 		/* LG Electronics 17U70P */
 		.matches = {




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux