Commit eefc9589 authored by Lyude Paul's avatar Lyude Paul
Browse files

drm/amd/amdgpu_dm/mst: Stop printing extra messages in dm_dp_add_mst_connector()



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: default avatarLyude Paul <lyude@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200331205740.135525-4-lyude@redhat.com


Reviewed-by: default avatarAlex Deucher <alexdeucher@gmail.com>
parent 09b974e8
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -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;
}