tests/exynos: simplify drm_set_crtc

We can just return 'ret' here, the goto serves no purpose.

Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
Acked-by: Emil Velikov <emil.l.velikov@gmail.com>
main
Tobias Jakobi 2015-06-12 20:15:12 +02:00 committed by Emil Velikov
parent 28d896c763
commit 13ad10afc3
1 changed files with 1 additions and 6 deletions

View File

@ -150,14 +150,9 @@ static int drm_set_crtc(struct exynos_device *dev, struct connector *c,
ret = drmModeSetCrtc(dev->fd, c->crtc,
fb_id, 0, 0, &c->id, 1, c->mode);
if (ret) {
if (ret)
drmMsg("failed to set mode: %s\n", strerror(errno));
goto err;
}
return 0;
err:
return ret;
}