32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c
|
|
index 4e853acfd1e8..14b162167436 100644
|
|
--- a/drivers/gpu/drm/drm_panel_orientation_quirks.c
|
|
+++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c
|
|
@@ -121,6 +121,12 @@ static const struct drm_dmi_panel_orientation_data lcd1600x2560_leftside_up = {
|
|
.orientation = DRM_MODE_PANEL_ORIENTATION_LEFT_UP,
|
|
};
|
|
|
|
+static const struct drm_dmi_panel_orientation_data win600 = {
|
|
+ .width = 720,
|
|
+ .height = 1280,
|
|
+ .orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP,
|
|
+};
|
|
+
|
|
static const struct dmi_system_id orientation_data[] = {
|
|
{ /* Acer One 10 (S1003) */
|
|
.matches = {
|
|
@@ -311,7 +317,13 @@ static const struct dmi_system_id orientation_data[] = {
|
|
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "VIOS"),
|
|
DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "LTH17"),
|
|
},
|
|
- .driver_data = (void *)&lcd800x1280_rightside_up,
|
|
+ .driver_data = (void *)&lcd720x1280_rightside_up,
|
|
+ }, { /* Anbernic Win600 */
|
|
+ .matches = {
|
|
+ DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Anbernic"),
|
|
+ DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "Win600"),
|
|
+ },
|
|
+ .driver_data = (void *)&win600,
|
|
},
|
|
{}
|
|
};
|