Commit fbce4064 authored by Ilija Hadzic's avatar Ilija Hadzic Committed by Dave Airlie

drm: restore crtc origin if mode_set_base fails

Signed-off-by: default avatarIlija Hadzic <ihadzic@research.bell-labs.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent bec2eac3
...@@ -822,6 +822,8 @@ int drm_crtc_helper_set_config(struct drm_mode_set *set) ...@@ -822,6 +822,8 @@ int drm_crtc_helper_set_config(struct drm_mode_set *set)
ret = crtc_funcs->mode_set_base(set->crtc, ret = crtc_funcs->mode_set_base(set->crtc,
set->x, set->y, save_set.fb); set->x, set->y, save_set.fb);
if (ret != 0) { if (ret != 0) {
set->crtc->x = save_set.x;
set->crtc->y = save_set.y;
set->crtc->fb = save_set.fb; set->crtc->fb = save_set.fb;
goto fail; goto fail;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment