diff options
-rw-r--r-- | drivers/gpu/drm/vc4/vc4_hdmi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/vc4/vc4_hdmi.c b/drivers/gpu/drm/vc4/vc4_hdmi.c index 29be7b7273df..1e61931846d3 100644 --- a/drivers/gpu/drm/vc4/vc4_hdmi.c +++ b/drivers/gpu/drm/vc4/vc4_hdmi.c | |||
@@ -174,6 +174,9 @@ vc4_hdmi_connector_detect(struct drm_connector *connector, bool force) | |||
174 | return connector_status_disconnected; | 174 | return connector_status_disconnected; |
175 | } | 175 | } |
176 | 176 | ||
177 | if (drm_probe_ddc(vc4->hdmi->ddc)) | ||
178 | return connector_status_connected; | ||
179 | |||
177 | if (HDMI_READ(VC4_HDMI_HOTPLUG) & VC4_HDMI_HOTPLUG_CONNECTED) | 180 | if (HDMI_READ(VC4_HDMI_HOTPLUG) & VC4_HDMI_HOTPLUG_CONNECTED) |
178 | return connector_status_connected; | 181 | return connector_status_connected; |
179 | else | 182 | else |