From 576cba86b704c0de484ba852b8dce5b24d683f7e Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 8 May 2008 16:09:45 +1000 Subject: drm: fix replacefb to change fb properties --- linux-core/drm_crtc.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'linux-core/drm_crtc.c') diff --git a/linux-core/drm_crtc.c b/linux-core/drm_crtc.c index 60255f54..2d1c8064 100644 --- a/linux-core/drm_crtc.c +++ b/linux-core/drm_crtc.c @@ -2551,6 +2551,11 @@ int drm_mode_replacefb(struct drm_device *dev, if (fb->bo->type == drm_bo_type_kernel) DRM_ERROR("the bo should not be a kernel bo\n"); + fb->width = r->width; + fb->height = r->height; + fb->pitch = r->pitch; + fb->bits_per_pixel = r->bpp; + fb->depth = r->depth; fb->bo = bo; /* find all crtcs connected to this fb */ -- cgit v1.2.3