drm/amd/amdgpu_dm/mst: Stop printing extra messages in dm_dp_add_mst_connector()
authorLyude Paul <lyude@redhat.com>
Tue, 31 Mar 2020 20:57:36 +0000 (16:57 -0400)
committerLyude Paul <lyude@redhat.com>
Fri, 3 Apr 2020 20:51:51 +0000 (16:51 -0400)
You can already trace the creation and destruction of connectors using
DRM, and we definitely don't need to be printing info messages on
connector hotplugs as well. So, get rid of these.

Signed-off-by: Lyude Paul <lyude@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200331205740.135525-4-lyude@redhat.com
Reviewed-by: Alex Deucher <alexdeucher@gmail.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c

index 09025cc..d56b758 100644 (file)
@@ -433,13 +433,8 @@ dm_dp_add_mst_connector(struct drm_dp_mst_topology_mgr *mgr,
         */
        amdgpu_dm_connector_funcs_reset(connector);
 
-       DRM_INFO("DM_MST: added connector: %p [id: %d] [master: %p]\n",
-                aconnector, connector->base.id, aconnector->mst_port);
-
        drm_dp_mst_get_port_malloc(port);
 
-       DRM_DEBUG_KMS(":%d\n", connector->base.id);
-
        return connector;
 }