From: Yongqiang Sun Date: Wed, 11 Jan 2017 20:52:06 +0000 (-0500) Subject: drm/amd/display: Null check clock source. X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=457b74cb3773a1950e49c2d4826d1b295c59bdf1;p=openwrt%2Fstaging%2Fblogic.git drm/amd/display: Null check clock source. Signed-off-by: Yongqiang Sun Acked-by: Harry Wentland Reviewed-by: Tony Cheng Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_link_hwss.c b/drivers/gpu/drm/amd/display/dc/core/dc_link_hwss.c index 55d96656e54b..b0ac94d673c4 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc_link_hwss.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc_link_hwss.c @@ -74,7 +74,8 @@ void dp_enable_link_phy( if (pipes[i].stream != NULL && pipes[i].stream->sink != NULL && pipes[i].stream->sink->link == link) { - if (pipes[i].clock_source->id != CLOCK_SOURCE_ID_DP_DTO) { + if (pipes[i].clock_source != NULL && + pipes[i].clock_source->id != CLOCK_SOURCE_ID_DP_DTO) { pipes[i].clock_source = dp_cs; pipes[i].pix_clk_params.requested_pix_clk = pipes[i].stream->public.timing.pix_clk_khz;