1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-24 04:44:02 +00:00

Merge pull request from tobiasjakobi/fixes

exynos_gfx: actually turn off the crtc during cleanup
This commit is contained in:
Twinaphex 2015-02-25 03:55:11 +11:00
commit f1fc0c6b22

@ -903,7 +903,7 @@ static void exynos_free(struct exynos_data *pdata)
/* Disable the CRTC. */ /* Disable the CRTC. */
if (drmModeSetCrtc(pdata->fd, pdata->drm->crtc_id, 0, if (drmModeSetCrtc(pdata->fd, pdata->drm->crtc_id, 0,
0, 0, &pdata->drm->connector_id, 1, NULL)) 0, 0, NULL, 0, NULL))
RARCH_WARN("video_exynos: failed to disable the crtc\n"); RARCH_WARN("video_exynos: failed to disable the crtc\n");
clean_up_pages(pdata->pages, pdata->num_pages); clean_up_pages(pdata->pages, pdata->num_pages);