Commit aa36d897 authored by Dillon Varone's avatar Dillon Varone Committed by Alex Deucher

drm/amd/display: Init link enc resources in dc_state only if res_pool presents

[Why & How]
res_pool is not initialized in all situations such as virtual
environments, and therefore link encoder resources should not be
initialized if res_pool is NULL.

Cc: Mario Limonciello <mario.limonciello@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
Reviewed-by: default avatarMartin Leung <martin.leung@amd.com>
Acked-by: default avatarAlex Hung <alex.hung@amd.com>
Signed-off-by: default avatarDillon Varone <dillon.varone@amd.com>
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 3bb9b1f9
...@@ -267,7 +267,8 @@ void dc_state_construct(struct dc *dc, struct dc_state *state) ...@@ -267,7 +267,8 @@ void dc_state_construct(struct dc *dc, struct dc_state *state)
state->clk_mgr = dc->clk_mgr; state->clk_mgr = dc->clk_mgr;
/* Initialise DIG link encoder resource tracking variables. */ /* Initialise DIG link encoder resource tracking variables. */
link_enc_cfg_init(dc, state); if (dc->res_pool)
link_enc_cfg_init(dc, state);
} }
void dc_state_destruct(struct dc_state *state) void dc_state_destruct(struct dc_state *state)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment