]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
drm: shut up invalid edid messages
authorMaarten Lankhorst <maarten.lankhorst@canonical.com>
Tue, 29 Jan 2013 13:27:39 +0000 (14:27 +0100)
committerDave Airlie <airlied@redhat.com>
Fri, 15 Feb 2013 00:20:34 +0000 (10:20 +1000)
My cheapo monitor has an invalid block 1, resulting in a lot of dmesg spam every few seconds.

I get it the first time that the entire block is all 0xff..

Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
Cc: stable@vger.kernel.org [v3.7]
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_edid.c

index 51324256a657f129e5568150519777e556cb6837..e1aca7b5398775dd97830dec47a68684731917d9 100644 (file)
@@ -354,10 +354,14 @@ drm_do_get_edid(struct drm_connector *connector, struct i2c_adapter *adapter)
                                break;
                        }
                }
-               if (i == 4)
+
+               if (i == 4 && print_bad_edid) {
                        dev_warn(connector->dev->dev,
                         "%s: Ignoring invalid EDID block %d.\n",
                         drm_get_connector_name(connector), j);
+
+                       connector->bad_edid_counter++;
+               }
        }
 
        if (valid_extensions != block[0x7e]) {