diff options
author | Dmytro Laktyushkin <[email protected]> | 2018-05-23 18:02:27 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2018-07-05 16:38:32 -0500 |
commit | d578839ca014e5f4e6d540caadc0b84d50a8977f (patch) | |
tree | 36acb8511f4ab4ab53f468312903f7dae5d00e3f /drivers/gpu/drm/amd/display/dc/inc | |
parent | 25684c59aff5147d48cc7ce04d4d75a15c5a3a71 (diff) |
drm/amd/display: get rid of cur_clks from dcn_bw_output
Cleans up dcn_bw_output to only contain calculated info,
actual programmed values will now be stored in respective blocks.
Signed-off-by: Dmytro Laktyushkin <[email protected]>
Reviewed-by: Nikola Cornij <[email protected]>
Acked-by: Harry Wentland <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/inc')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/inc/core_types.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/inc/core_types.h b/drivers/gpu/drm/amd/display/dc/inc/core_types.h index 44c48f3d0a1d..00d728e629fa 100644 --- a/drivers/gpu/drm/amd/display/dc/inc/core_types.h +++ b/drivers/gpu/drm/amd/display/dc/inc/core_types.h @@ -256,8 +256,7 @@ struct dce_bw_output { }; struct dcn_bw_output { - struct dc_clocks cur_clk; - struct dc_clocks calc_clk; + struct dc_clocks clk; struct dcn_watermark_set watermarks; }; |