Browse Source

drm/amd/display: Early return on stream programming failure

The fail goto is incorrect. It will incorrectly release the dc_states on
stream programming failure.

Signed-off-by: Leo (Sunpeng) Li <sunpeng.li@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>
Leo (Sunpeng) Li 7 years ago
parent
commit
e7f93e9067
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/gpu/drm/amd/display/dc/core/dc.c

+ 1 - 2
drivers/gpu/drm/amd/display/dc/core/dc.c

@@ -899,7 +899,7 @@ 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);
 	result = dc->hwss.apply_ctx_to_hw(dc, context);
 
 
 	if (result != DC_OK)
 	if (result != DC_OK)
-		goto fail;
+		return result;
 
 
 	if (context->stream_count > 1) {
 	if (context->stream_count > 1) {
 		enable_timing_multisync(dc, context);
 		enable_timing_multisync(dc, context);
@@ -938,7 +938,6 @@ static enum dc_status dc_commit_state_no_check(struct dc *dc, struct dc_state *c
 				context->streams[i]->timing.pix_clk_khz);
 				context->streams[i]->timing.pix_clk_khz);
 	}
 	}
 
 
-fail:
 	dc_enable_stereo(dc, context, dc_streams, context->stream_count);
 	dc_enable_stereo(dc, context, dc_streams, context->stream_count);
 
 
 	dc_release_state(dc->current_state);
 	dc_release_state(dc->current_state);