From: Vitaly Prosyak Date: Tue, 13 Dec 2016 20:23:16 +0000 (-0600) Subject: drm/amd/display: re gamma programming X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1e3d346f4fbb48f0a89134f4b834d3be2df3cc25;p=openwrt%2Fstaging%2Fblogic.git drm/amd/display: re gamma programming Fix gamma update logic to avoid crash Signed-off-by: Vitaly Prosyak Reviewed-by: Tony Cheng Acked-by: Harry Wentland Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c index 75b6e404d016..9a35e3bb8283 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -1445,7 +1445,8 @@ void dc_update_surfaces_for_target(struct dc *dc, struct dc_surface_update *upda } } - if (updates[i].gamma) { + if (updates[i].gamma && updates[i].gamma != + surface->public.gamma_correction) { if (surface->public.gamma_correction != NULL) dc_gamma_release(surface->public. gamma_correction);