Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81598846 authored by Thierry Reding's avatar Thierry Reding
Browse files

drm/panel: simple: Fix a couple of physical sizes



Both the Innolux ZJ070NA-01P and Samsung LTN101NT05 were listing the
horizontal and vertical resolutions in the size.width and size.height
fields, whereas they should contain the physical dimensions of the
panel.

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 1a695a90
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -964,8 +964,8 @@ static const struct panel_desc innolux_zj070na_01p = {
	.num_modes = 1,
	.bpc = 6,
	.size = {
		.width = 1024,
		.height = 600,
		.width = 154,
		.height = 90,
	},
};

@@ -1242,8 +1242,8 @@ static const struct panel_desc samsung_ltn101nt05 = {
	.num_modes = 1,
	.bpc = 6,
	.size = {
		.width = 1024,
		.height = 600,
		.width = 223,
		.height = 125,
	},
};