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

Commit 75626853 authored by Sean Paul's avatar Sean Paul Committed by Inki Dae
Browse files

drm/exynos: Use drm_mode_copy to copy modes



This patch changes the manual copying of mode to adjusted_mode in
mode_fixup to use drm_mode_copy instead of handling things manually.

Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent f041b257
Loading
Loading
Loading
Loading
+1 −9
Original line number Diff line number Diff line
@@ -897,21 +897,13 @@ static void hdmi_mode_fixup(struct exynos_drm_display *display,
		mode_ok = hdmi_check_mode(display, m);

		if (mode_ok == 0) {
			struct drm_mode_object base;
			struct list_head head;

			DRM_INFO("desired mode doesn't exist so\n");
			DRM_INFO("use the most suitable mode among modes.\n");

			DRM_DEBUG_KMS("Adjusted Mode: [%d]x[%d] [%d]Hz\n",
				m->hdisplay, m->vdisplay, m->vrefresh);

			/* preserve display mode header while copying. */
			head = adjusted_mode->head;
			base = adjusted_mode->base;
			memcpy(adjusted_mode, m, sizeof(*m));
			adjusted_mode->head = head;
			adjusted_mode->base = base;
			drm_mode_copy(adjusted_mode, m);
			break;
		}
	}