]> Git Repo - linux.git/commitdiff
platform/x86: asus-wmi: Support 2023 ROG X16 tablet mode
authorLuke D. Jones <[email protected]>
Tue, 5 Sep 2023 08:28:13 +0000 (20:28 +1200)
committerHans de Goede <[email protected]>
Mon, 11 Sep 2023 11:26:13 +0000 (13:26 +0200)
Add quirk for ASUS ROG X16 (GV601V, 2023 versions) Flow 2-in-1
to enable tablet mode with lid flip (all screen rotations).

Signed-off-by: Luke D. Jones <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Hans de Goede <[email protected]>
Signed-off-by: Hans de Goede <[email protected]>
drivers/platform/x86/asus-nb-wmi.c

index fdf7da06af3067495fe7132e725a52542010ff8d..d85d895fee89431a42d94bfdde087f8e64183547 100644 (file)
@@ -478,6 +478,15 @@ static const struct dmi_system_id asus_quirks[] = {
                },
                .driver_data = &quirk_asus_tablet_mode,
        },
+       {
+               .callback = dmi_matched,
+               .ident = "ASUS ROG FLOW X16",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "GV601V"),
+               },
+               .driver_data = &quirk_asus_tablet_mode,
+       },
        {
                .callback = dmi_matched,
                .ident = "ASUS VivoBook E410MA",
This page took 0.05906 seconds and 4 git commands to generate.