drm/amd/display: Remove assert from PHY state update
authorTaimur Hassan <Syed.Hassan@amd.com>
Tue, 16 Aug 2022 21:10:50 +0000 (17:10 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 29 Aug 2022 21:45:51 +0000 (17:45 -0400)
[Why & How]
In some cases, there are calls to transition from TX_ON to TX_ON. This is
expected, so do not assert. However, these are redundant, so return
prematurely.

Reviewed-by: Alvin Lee <Alvin.Lee2@amd.com>
Acked-by: Brian Chang <Brian.Chang@amd.com>
Signed-off-by: Taimur Hassan <Syed.Hassan@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dcn32/dcn32_hwseq.c

index 3b1c660..b755611 100644 (file)
@@ -1224,10 +1224,8 @@ void dcn32_update_phy_state(struct dc_state *state, struct pipe_ctx *pipe_ctx,
 {
        enum phy_state current_state = pipe_ctx->stream->link->phy_state;
 
-       if (current_state == target_state) {
-               BREAK_TO_DEBUGGER();
+       if (current_state == target_state)
                return;
-       }
 
        if (target_state == TX_OFF_SYMCLK_OFF) {
                core_link_disable_stream(pipe_ctx);