[<prev] [next>] [day] [month] [year] [list]
Message-ID: <4B53216E.6010802@gmail.com>
Date: Sun, 17 Jan 2010 15:40:46 +0100
From: Roel Kluin <roel.kluin@...il.com>
To: David Airlie <airlied@...ux.ie>, dri-devel@...ts.sourceforge.net,
Andrew Morton <akpm@...ux-foundation.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: [PATCH] drm: Fix setting of fb_changed in drm_crtc_helper_set_config()
Only set fb_changed if bits_per_pixel or depth changed.
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c
index 7d0f00a..89197c1 100644
--- a/drivers/gpu/drm/drm_crtc_helper.c
+++ b/drivers/gpu/drm/drm_crtc_helper.c
@@ -840,8 +840,6 @@ int drm_crtc_helper_set_config(struct drm_mode_set *set)
set->crtc->fb->bits_per_pixel) ||
set->fb->depth != set->crtc->fb->depth)
fb_changed = true;
- else
- fb_changed = true;
}
if (set->x != set->crtc->x || set->y != set->crtc->y)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists