drm: update crtc x/y when only fb changes
authorBen Skeggs <bskeggs@redhat.com>
Fri, 18 Sep 2009 00:43:52 +0000 (10:43 +1000)
committerDave Airlie <airlied@redhat.com>
Fri, 18 Sep 2009 04:34:05 +0000 (14:34 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_crtc_helper.c

index ff447f1..fe86974 100644 (file)
@@ -869,6 +869,9 @@ int drm_crtc_helper_set_config(struct drm_mode_set *set)
                }
                drm_helper_disable_unused_functions(dev);
        } else if (fb_changed) {
+               set->crtc->x = set->x;
+               set->crtc->y = set->y;
+
                old_fb = set->crtc->fb;
                if (set->crtc->fb != set->fb)
                        set->crtc->fb = set->fb;