diff options
| -rw-r--r-- | drivers/gpu/drm/i915/intel_crt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/intel_crt.c b/drivers/gpu/drm/i915/intel_crt.c index e93f93cc7e78..0979d8877880 100644 --- a/drivers/gpu/drm/i915/intel_crt.c +++ b/drivers/gpu/drm/i915/intel_crt.c | |||
| @@ -288,6 +288,8 @@ static bool intel_crt_detect_ddc(struct drm_connector *connector) | |||
| 288 | * This may be a DVI-I connector with a shared DDC | 288 | * This may be a DVI-I connector with a shared DDC |
| 289 | * link between analog and digital outputs, so we | 289 | * link between analog and digital outputs, so we |
| 290 | * have to check the EDID input spec of the attached device. | 290 | * have to check the EDID input spec of the attached device. |
| 291 | * | ||
| 292 | * On the other hand, what should we do if it is a broken EDID? | ||
| 291 | */ | 293 | */ |
| 292 | if (edid != NULL) { | 294 | if (edid != NULL) { |
| 293 | is_digital = edid->input & DRM_EDID_INPUT_DIGITAL; | 295 | is_digital = edid->input & DRM_EDID_INPUT_DIGITAL; |
| @@ -298,6 +300,8 @@ static bool intel_crt_detect_ddc(struct drm_connector *connector) | |||
| 298 | if (!is_digital) { | 300 | if (!is_digital) { |
| 299 | DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n"); | 301 | DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n"); |
| 300 | return true; | 302 | return true; |
| 303 | } else { | ||
| 304 | DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n"); | ||
| 301 | } | 305 | } |
| 302 | } | 306 | } |
| 303 | 307 | ||
