Commit 2f551c84 authored by Chris Wilson's avatar Chris Wilson

drm/i915/sdvo: Mark the status as unknown if attached with EDID

One problem with devices that share the DDC bus between the VGA and
DVI-I connectors is that with two devices attached we cannot know if
there is truly a monitor attached to the DVI connector. In this case, it
is preferrrable to mark the status as unknown, so that the user can
supply the known set of modes and continue to use the output.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
parent ff482d83
......@@ -1480,7 +1480,7 @@ intel_sdvo_hdmi_sink_detect(struct drm_connector *connector)
if (edid == NULL)
edid = intel_sdvo_get_analog_edid(connector);
status = connector_status_disconnected;
status = connector_status_unknown;
if (edid != NULL) {
/* DDC bus is shared, match EDID to connector type */
if (edid->input & DRM_EDID_INPUT_DIGITAL) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment