drm: Include the connector name in the output_poll_execute() debug message

Always useful to know just which connector was polled and had its
status updated.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Dave Airlie <airlied@redhat.com>

authored by Chris Wilson and committed by Dave Airlie 0f16830e e29ff729

+4 -1
+4 -1
drivers/gpu/drm/drm_crtc_helper.c
··· 874 874 continue; 875 875 876 876 connector->status = connector->funcs->detect(connector, false); 877 - DRM_DEBUG_KMS("connector status updated to %d\n", connector->status); 877 + DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n", 878 + connector->base.id, 879 + drm_get_connector_name(connector), 880 + old_status, connector->status); 878 881 if (old_status != connector->status) 879 882 changed = true; 880 883 }