From: Victor Lu Date: Tue, 29 Sep 2020 20:03:10 +0000 (-0400) Subject: drm/amd/display: Do not warn NULL dc_sink if forcing connector X-Git-Tag: microblaze-v5.12~209^2~12^2~50 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=ad975f448d963d700aa9a67b9d6aa5489c00cad2;p=linux-2.6-microblaze.git drm/amd/display: Do not warn NULL dc_sink if forcing connector [why] There is a DRM_ERROR when the dc_sink is NULL and there should not be this warning when the connector is forced. [how] Do not warn if dc_sink is NULL if the connector is forced. Signed-off-by: Victor Lu Reviewed-by: Nicholas Kazlauskas Acked-by: Qingqing Zhuo Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c index 0448835e3e34..170beee67ccf 100644 --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -5833,7 +5833,8 @@ enum drm_mode_status amdgpu_dm_connector_mode_valid(struct drm_connector *connec dc_sink = to_amdgpu_dm_connector(connector)->dc_sink; - if (dc_sink == NULL) { + if (dc_sink == NULL && aconnector->base.force != DRM_FORCE_ON_DIGITAL && + aconnector->base.force != DRM_FORCE_ON) { DRM_ERROR("dc_sink is NULL!\n"); goto fail; }