diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-11-19 02:59:08 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-11-19 02:59:08 +0000 |
commit | 6f3480307af9fa02eca736e1c1c04e3d9797a789 (patch) | |
tree | c5d590d0d86e38acd1cf923c9738e479d3f8dc73 /sys | |
parent | d36a322c05972049f9bdbab1c7f85a1be30bd0fa (diff) |
drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1
From Hans de Goede
62b90d7eeb6deb0124dcfe1b12f41c1524d26352 in linux 5.10.y/5.10.80
a53f1dd3ab9fec715c6c2e8e01bf4d3c07eef8e5 in mainline linux
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/drm/drm_panel_orientation_quirks.c | 7 |
1 files changed, 7 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 cf9aabe75b5..8f12563fdb9 100644 --- a/sys/dev/pci/drm/drm_panel_orientation_quirks.c +++ b/sys/dev/pci/drm/drm_panel_orientation_quirks.c @@ -211,6 +211,13 @@ static const struct dmi_system_id orientation_data[] = { DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "KALAP10D300EA"), }, .driver_data = (void *)&lcd800x1280_rightside_up, + }, { /* KD Kurio Smart C15200 2-in-1 */ + .matches = { + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "KD Interactive"), + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Kurio Smart"), + DMI_EXACT_MATCH(DMI_BOARD_NAME, "KDM960BCP"), + }, + .driver_data = (void *)&lcd800x1280_rightside_up, }, { /* * Lenovo Ideapad Miix 310 laptop, only some production batches * have a portrait screen, the resolution checks makes the quirk |