Practically speaking, the EDID major version is never not 1.

Signed-off-by: Adam Jackson <[email protected]>
---
 hw/xfree86/ddc/ddcProperty.c | 15 ++++-----------
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git a/hw/xfree86/ddc/ddcProperty.c b/hw/xfree86/ddc/ddcProperty.c
index a31e9c7..66e7ba8 100644
--- a/hw/xfree86/ddc/ddcProperty.c
+++ b/hw/xfree86/ddc/ddcProperty.c
@@ -75,17 +75,10 @@ addRootWindowProperties(ScrnInfoPtr pScrn, xf86MonPtr DDC)
 {
     int scrnIndex = pScrn->scrnIndex;
 
-    if (DDC->ver.version == 1) {
-        if (xf86Initialising)
-            edidMakeAtom(scrnIndex, EDID1_ATOM_NAME, DDC);
-        else
-            setRootWindowEDID(pScrn->pScreen, DDC);
-    }
-    else {
-        xf86DrvMsg(scrnIndex, X_PROBED, "unexpected EDID version %d.%d\n",
-                   DDC->ver.version, DDC->ver.revision);
-        return;
-    }
+    if (xf86Initialising)
+        edidMakeAtom(scrnIndex, EDID1_ATOM_NAME, DDC);
+    else
+        setRootWindowEDID(pScrn->pScreen, DDC);
 }
 
 Bool
-- 
2.5.0

_______________________________________________
[email protected]: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: https://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to