summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/amd/display/dc/core/dc.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
index d5320f7162b4..5579d2167a9a 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
@@ -1279,8 +1279,10 @@ void dc_update_planes_and_stream(struct dc *dc,
/* initialize scratch memory for building context */
context = dc_create_state();
- if (context == NULL)
- goto context_alloc_fail;
+ if (context == NULL) {
+ DC_ERROR("Failed to allocate new validate context!\n");
+ return;
+ }
dc_resource_state_copy_construct(
dc->current_state, context);
@@ -1534,9 +1536,6 @@ void dc_update_planes_and_stream(struct dc *dc,
fail:
dc_release_state(context);
-
-context_alloc_fail:
- DC_ERROR("Failed to allocate new validate context!\n");
}
uint8_t dc_get_current_stream_count(struct dc *dc)