drm/omapdrm: Remove double gamma table write in omap_crtc_atomic_flush()
Remove double gamma table write in omap_crtc_atomic_flush().
Fixes commit 492a426a2f
("drm/omapdrm: Implement gamma_lut atomic crtc properties")
Signed-off-by: Jyri Sarha <jsarha@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:

committed by
Tomi Valkeinen

parent
0cac5b61ff
commit
a7e8cd39af
@@ -411,19 +411,6 @@ static void omap_crtc_atomic_flush(struct drm_crtc *crtc,
|
|||||||
dispc_mgr_set_gamma(omap_crtc->channel, lut, length);
|
dispc_mgr_set_gamma(omap_crtc->channel, lut, length);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (crtc->state->color_mgmt_changed) {
|
|
||||||
struct drm_color_lut *lut = NULL;
|
|
||||||
uint length = 0;
|
|
||||||
|
|
||||||
if (crtc->state->gamma_lut) {
|
|
||||||
lut = (struct drm_color_lut *)
|
|
||||||
crtc->state->gamma_lut->data;
|
|
||||||
length = crtc->state->gamma_lut->length /
|
|
||||||
sizeof(*lut);
|
|
||||||
}
|
|
||||||
dispc_mgr_set_gamma(omap_crtc->channel, lut, length);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (dispc_mgr_is_enabled(omap_crtc->channel)) {
|
if (dispc_mgr_is_enabled(omap_crtc->channel)) {
|
||||||
|
|
||||||
DBG("%s: GO", omap_crtc->name);
|
DBG("%s: GO", omap_crtc->name);
|
||||||
|
Reference in New Issue
Block a user