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

Commit 348a3d5e authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "disp: msm: dsi: fix physical size truncation of large panel"

parents 5b14b215 52a081ef
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -820,8 +820,8 @@ int dsi_connector_get_modes(struct drm_connector *connector, void *data,
	struct drm_display_mode drm_mode;
	struct dsi_display *display = data;
	struct edid edid;
	u8 width_mm = connector->display_info.width_mm;
	u8 height_mm = connector->display_info.height_mm;
	unsigned int width_mm = connector->display_info.width_mm;
	unsigned int height_mm = connector->display_info.height_mm;
	const u8 edid_buf[EDID_LENGTH] = {
		0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x44, 0x6D,
		0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1B, 0x10, 0x01, 0x03,