]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm: don't whine about not reading EDID data
authorJesse Barnes <jbarnes@virtuousgeek.org>
Thu, 22 Jan 2009 12:23:53 +0000 (22:23 +1000)
committerDave Airlie <airlied@redhat.com>
Thu, 22 Jan 2009 12:23:53 +0000 (22:23 +1000)
Make this message a little quieter, since it's common and not necessarily
indicative of a problem.

Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_edid.c

index 0fbb0da342cbee7b6b6bd50dbe65cbd51b665bf1..5a4d3244758a102ec7cea6ed87342619dd47c85e 100644 (file)
@@ -660,7 +660,7 @@ struct edid *drm_get_edid(struct drm_connector *connector,
 
        edid = (struct edid *)drm_ddc_read(adapter);
        if (!edid) {
-               dev_warn(&connector->dev->pdev->dev, "%s: no EDID data\n",
+               dev_info(&connector->dev->pdev->dev, "%s: no EDID data\n",
                         drm_get_connector_name(connector));
                return NULL;
        }