diff options
author | Dmytro Laktyushkin <[email protected]> | 2018-05-28 18:09:52 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2018-07-05 16:38:30 -0500 |
commit | 2dfa76d328630de3dd4fc09b296ee9771ba13e39 (patch) | |
tree | 5cdf50e8fa766f2186c179b9f584588f442296fa | |
parent | 92276a06f9c3d29183c7bdf46a6dbbc9c00f7acf (diff) |
drm/amd/display: remove invalid assert when no max_pixel_clk is found
Signed-off-by: Dmytro Laktyushkin <[email protected]>
Reviewed-by: Harry Wentland <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c b/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c index 34eb7a33851b..4cdf86690d19 100644 --- a/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c +++ b/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c @@ -1779,9 +1779,6 @@ static uint32_t get_max_pixel_clock_for_all_paths( pipe_ctx->stream_res.pix_clk_params.requested_pix_clk; } - if (max_pix_clk == 0) - ASSERT(0); - return max_pix_clk; } |