xfree86: Change VBE version early-out to 1.2. (#22672)

Reporter has an S3 Trio with DDC and VESA 1.2.

Signed-off-by: Corbin Simpson <MostAwesomeDude@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Evgeny M. Zubok 2010-04-08 03:58:21 -07:00 committed by Adam Jackson
parent 184fbf7541
commit b78897d0a0

View File

@ -325,7 +325,7 @@ vbeDoEDID(vbeInfoPtr pVbe, void *unused)
if (!pVbe)
return NULL;
if (pVbe->version < 0x200)
if (pVbe->version < 0x102)
return NULL;
DDC_data = vbeReadEDID(pVbe);