From 551123d4d680752d0f6be5d8a051c21efada3219 Mon Sep 17 00:00:00 2001 From: Tobias Jakobi Date: Fri, 20 Feb 2015 10:44:54 +0100 Subject: [PATCH] exynos_gfx: set connector_id in exynos_init The connector ID is only used for initial setup of the CRTC and when deinitializing the backend, so this bug probably wasn't noticed at all. --- gfx/drivers/exynos_gfx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gfx/drivers/exynos_gfx.c b/gfx/drivers/exynos_gfx.c index df18538007..b308fcfbce 100644 --- a/gfx/drivers/exynos_gfx.c +++ b/gfx/drivers/exynos_gfx.c @@ -743,6 +743,7 @@ static int exynos_init(struct exynos_data *pdata, unsigned bpp) } drm->crtc_id = drm->encoder->crtc_id; + drm->connector_id = drm->connector->connector_id; drm->orig_crtc = drmModeGetCrtc(fd, drm->crtc_id); if (!drm->orig_crtc) RARCH_WARN("video_exynos: cannot find original crtc\n");