aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/drm_edid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index e8d17eebde71..2dc1a60a867d 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -1706,11 +1706,11 @@ static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,
1706 return NULL; 1706 return NULL;
1707 1707
1708 if (pt->misc & DRM_EDID_PT_STEREO) { 1708 if (pt->misc & DRM_EDID_PT_STEREO) {
1709 printk(KERN_WARNING "stereo mode not supported\n"); 1709 DRM_DEBUG_KMS("stereo mode not supported\n");
1710 return NULL; 1710 return NULL;
1711 } 1711 }
1712 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) { 1712 if (!(pt->misc & DRM_EDID_PT_SEPARATE_SYNC)) {
1713 printk(KERN_WARNING "composite sync not supported\n"); 1713 DRM_DEBUG_KMS("composite sync not supported\n");
1714 } 1714 }
1715 1715
1716 /* it is incorrect if hsync/vsync width is zero */ 1716 /* it is incorrect if hsync/vsync width is zero */