projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
073a45e
)
drm/amd/display: Both timing_sync and multisync need stream_count > 1
author
Harry Wentland
<
[email protected]
>
Mon, 30 Oct 2017 19:53:40 +0000
(15:53 -0400)
committer
Alex Deucher
<
[email protected]
>
Wed, 6 Dec 2017 17:47:27 +0000
(12:47 -0500)
Previous code threw a warning about misleading indentation
Signed-off-by: Harry Wentland <
[email protected]
>
Reviewed-by: Mikita Lipski <
[email protected]
>
Acked-by: Harry Wentland <
[email protected]
>
Signed-off-by: Alex Deucher <
[email protected]
>
drivers/gpu/drm/amd/display/dc/core/dc.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/display/dc/core/dc.c
b/drivers/gpu/drm/amd/display/dc/core/dc.c
index 01ec1edd1c69bd68165beb404c7d0037d1010a28..f3496881caf4d0fbfe8e3938631139761d666ded 100644
(file)
--- a/
drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/
drivers/gpu/drm/amd/display/dc/core/dc.c
@@
-913,9
+913,10
@@
static enum dc_status dc_commit_state_no_check(struct dc *dc, struct dc_state *c
}
result = dc->hwss.apply_ctx_to_hw(dc, context);
- if (context->stream_count > 1)
+ if (context->stream_count > 1)
{
enable_timing_multisync(dc, context);
program_timing_sync(dc, context);
+ }
dc_enable_stereo(dc, context, dc_streams, context->stream_count);