summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/dc/core
diff options
context:
space:
mode:
authorEric Yang <Eric.Yang2@amd.com>2018-03-14 17:56:58 -0400
committerAlex Deucher <alexander.deucher@amd.com>2018-04-11 13:08:06 -0500
commit1402c605173bbbb1c2f7e615a1708a6ee61c69c3 (patch)
tree919f0a4332cd6c3e12cca50e0ac5aaf5227f1e7f /drivers/gpu/drm/amd/display/dc/core
parent78d5d04d118d55b6c51ca787d5debb9ad1b8a391 (diff)
downloadop-kernel-dev-1402c605173bbbb1c2f7e615a1708a6ee61c69c3.zip
op-kernel-dev-1402c605173bbbb1c2f7e615a1708a6ee61c69c3.tar.gz
drm/amd/display: Set all update flags when we have full update
To prevent future optimization related bugs, just set all update flags when we have a full update, since we know we want to reprogram everything in that case. Signed-off-by: Eric Yang <Eric.Yang2@amd.com> Reviewed-by: Tony Cheng <Tony.Cheng@amd.com> Acked-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/core')
-rw-r--r--drivers/gpu/drm/amd/display/dc/core/dc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
index 6f4ad67..b331d9e 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
@@ -1208,7 +1208,7 @@ enum surface_update_type dc_check_update_surfaces_for_stream(
type = check_update_surfaces_for_stream(dc, updates, surface_count, stream_update, stream_status);
if (type == UPDATE_TYPE_FULL)
for (i = 0; i < surface_count; i++)
- updates[i].surface->update_flags.bits.full_update = 1;
+ updates[i].surface->update_flags.raw = 0xFFFFFFFF;
return type;
}
OpenPOWER on IntegriCloud