diff options
author | 2020-08-22 06:29:12 +0000 | |
---|---|---|
committer | 2020-08-22 06:29:12 +0000 | |
commit | 76de64e82b8fac0910819288dbab343e8692ec42 (patch) | |
tree | 862a19472aa2aaff6bdd8d649ddc5edbca386a1b /sys | |
parent | drm/amdgpu: fix ordering of psp suspend (diff) | |
download | wireguard-openbsd-76de64e82b8fac0910819288dbab343e8692ec42.tar.xz wireguard-openbsd-76de64e82b8fac0910819288dbab343e8692ec42.zip |
drm: Added orientation quirk for ASUS tablet model T103HAF
From Marius Iacob
ff4ca77f631ac57013333eecd8ff57e38abb9506 in linux 5.7.y/5.7.17
b5ac98cbb8e5e30c34ebc837d1e5a3982d2b5f5c in mainline linux
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/drm/drm_panel_orientation_quirks.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/pci/drm/drm_panel_orientation_quirks.c b/sys/dev/pci/drm/drm_panel_orientation_quirks.c index ff3eb7ae46a..43f1273afe0 100644 --- a/sys/dev/pci/drm/drm_panel_orientation_quirks.c +++ b/sys/dev/pci/drm/drm_panel_orientation_quirks.c @@ -121,6 +121,12 @@ static const struct dmi_system_id orientation_data[] = { DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T101HA"), }, .driver_data = (void *)&lcd800x1280_rightside_up, + }, { /* Asus T103HAF */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T103HAF"), + }, + .driver_data = (void *)&lcd800x1280_rightside_up, }, { /* GPD MicroPC (generic strings, also match on bios date) */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Default string"), |