Skip to content

Commit 4106a70

Browse files
flukejonesjwrdegoede
authored andcommitted
platform/x86: asus-wmi: Support 2023 ROG X16 tablet mode
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 <luke@ljones.dev> Link: https://lore.kernel.org/r/20230905082813.13470-1-luke@ljones.dev Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
1 parent 0a138f1 commit 4106a70

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/platform/x86/asus-nb-wmi.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,15 @@ static const struct dmi_system_id asus_quirks[] = {
478478
},
479479
.driver_data = &quirk_asus_tablet_mode,
480480
},
481+
{
482+
.callback = dmi_matched,
483+
.ident = "ASUS ROG FLOW X16",
484+
.matches = {
485+
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
486+
DMI_MATCH(DMI_PRODUCT_NAME, "GV601V"),
487+
},
488+
.driver_data = &quirk_asus_tablet_mode,
489+
},
481490
{
482491
.callback = dmi_matched,
483492
.ident = "ASUS VivoBook E410MA",

0 commit comments

Comments
 (0)